Drop profile-dir validation for sandbox-kv (#12671)

Given that we’re killing that in 2.0 it doesn’t make sense to keep
this. I’ll create an issue on the assembly repo to add corresponding
tests for the Sandbox tests.

changelog_begin
changelog_end
This commit is contained in:
Moritz Kiefer 2022-02-01 09:49:41 +01:00 committed by GitHub
parent 1fa095a327
commit 773132481a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,19 +19,6 @@ JAVA=$(rlocation "$TEST_WORKSPACE/$1")
SDK_CE=$(rlocation "$TEST_WORKSPACE/$2")
SDK_EE=$(rlocation "$TEST_WORKSPACE/$3")
for cmd in sandbox-kv; do
ret=0
$JAVA -jar $SDK_CE $cmd --help | grep -q profile-dir || ret=$?
if [[ $ret -eq 0 ]]; then
echo "Unexpected profile-dir option in CE"
exit 1
fi
done
for cmd in sandbox-kv; do
$JAVA -jar $SDK_EE $cmd --help | grep -q profile-dir
done
if ! ($JAVA -jar $SDK_EE trigger-service --help | grep -q oracle); then
exit 1
fi