You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test(machine_type_test): fix flag parsing and mounted directory in gke/machine_type_test (#4877)
* test(gke): fix flag parsing and mounted directory resolution in machine type tests
* Update perfmetrics/scripts/continuous_test/gke/machine_type_test/run_test.sh
# These tests are chosen to verify that machine-type is correctly passed by
44
44
# CSI Driver to GCSFuse and GCSFuse is correctly accepting it and triggering optimization flags
45
45
# like implicit-dirs and rename-dir-limit for high-performance machine-type as expected.
46
-
go test -v ./tools/integration_tests/flag_optimizations/... --integrationTest --config-file="$(pwd)/tools/integration_tests/test_config.yaml" --mountedDirectory=/data_mnt --testbucket="$BUCKET_NAME" -run "TestImplicitDirsEnabled|TestRenameDirLimitSet"
46
+
export MOUNTED_DIR="/data_mnt"
47
+
go test -v ./tools/integration_tests/flag_optimizations/... -run "TestImplicitDirsEnabled|TestRenameDirLimitSet" -args --integrationTest --config-file="$(pwd)/tools/integration_tests/test_config.yaml" --mountedDirectory="${MOUNTED_DIR}" --testbucket="$BUCKET_NAME"
0 commit comments