Permalink
Comparing changes
Open a pull request
- 1 commit
- 18 files changed
- 0 commit comments
- 1 contributor
Unified
Split
Showing
with
1,702 additions
and 295 deletions.
- +0 −1 .travis.yml
- +1 −1 Makefile
- +318 −265 pkg/controller/controller_test.go
- +439 −0 pkg/controller/util_test.go
- +74 −0 pkg/image/qemu_test.go
- +124 −0 pkg/image/validate_test.go
- +350 −0 pkg/importer/dataStream_test.go
- +76 −0 pkg/importer/util_test.go
- +17 −20 test/framework/fileConversion.go
- +1 −1 {pkg → test/functional}/controller/controller_suite_test.go
- +291 −0 test/functional/controller/controller_test.go
- +1 −1 {pkg → test/functional}/image/validation_suite_test.go
- +1 −1 {pkg → test/functional}/image/validation_test.go
- +1 −1 test/{datastream → functional/importer}/datastream_suite_test.go
- +6 −1 test/{datastream → functional/importer}/datastream_test.go
- +1 −1 {pkg → test/functional}/importer/importer_suite_test.go
- +1 −1 {pkg → test/functional}/importer/importer_test.go
- +0 −1 test/integration/main_test.go
| @@ -56,4 +56,3 @@ deploy: | ||
| - bin/importer | ||
| - bin/import-controller | ||
| - manifests/controller/cdi-controller-deployment.yaml | ||
| @@ -17,7 +17,7 @@ F_TEST_BIN=$(BIN_DIR)/$(F_TEST) | ||
| CMD_DIR=$(REPO_ROOT)/cmd | ||
| CONTROLLER_CMD=$(CMD_DIR)/$(CONTROLLER) | ||
| IMPORTER_CMD=$(CMD_DIR)/$(IMPORTER) | ||
| F_TEST_DIR=$(REPO_ROOT)/test/datastream | ||
| F_TEST_DIR=$(REPO_ROOT)/test/functional/importer | ||
| F_IMG_DIR=$(REPO_ROOT)/test/images/tinyCore.iso | ||
| # Build Dirs | ||
Oops, something went wrong.