diff --git a/tests/compat.sh b/tests/compat.sh index 391a1e045..e814e9db1 100755 --- a/tests/compat.sh +++ b/tests/compat.sh @@ -320,10 +320,10 @@ add_common_ciphersuites() M_CIPHERS="$M_CIPHERS $CIPHERS" - G=`python3 translate_ciphers.py g "$CIPHERS"` + G=`python3 scripts/translate_ciphers.py g "$CIPHERS"` G_CIPHERS="$G_CIPHERS $G" - O=`python3 translate_ciphers.py o "$CIPHERS"` + O=`python3 scripts/translate_ciphers.py o "$CIPHERS"` O_CIPHERS="$O_CIPHERS $O" } @@ -406,7 +406,7 @@ add_openssl_ciphersuites() M_CIPHERS="$M_CIPHERS $CIPHERS" - O=`python3 translate_ciphers.py o "$CIPHERS"` + O=`python3 scripts/translate_ciphers.py o "$CIPHERS"` O_CIPHERS="$O_CIPHERS $O" } @@ -539,7 +539,7 @@ add_gnutls_ciphersuites() M_CIPHERS="$M_CIPHERS $CIPHERS" - G=`python3 translate_ciphers.py g "$CIPHERS"` + G=`python3 scripts/translate_ciphers.py g "$CIPHERS"` G_CIPHERS="$G_CIPHERS $G" } diff --git a/tests/test_translate_ciphers_format.sh b/tests/scripts/test_translate_ciphers_format.sh similarity index 100% rename from tests/test_translate_ciphers_format.sh rename to tests/scripts/test_translate_ciphers_format.sh diff --git a/tests/test_translate_ciphers_names.py b/tests/scripts/test_translate_ciphers_names.py similarity index 100% rename from tests/test_translate_ciphers_names.py rename to tests/scripts/test_translate_ciphers_names.py diff --git a/tests/translate_ciphers.py b/tests/scripts/translate_ciphers.py similarity index 100% rename from tests/translate_ciphers.py rename to tests/scripts/translate_ciphers.py