Move translate scripts to appropriate folder
"tests/scripts/*.py is executable programs used only for testing"
Signed-off-by: Joe Subbiani <joe.subbiani@arm.com>
diff --git a/tests/compat.sh b/tests/compat.sh
index 391a1e0..e814e9d 100755
--- a/tests/compat.sh
+++ b/tests/compat.sh
@@ -320,10 +320,10 @@
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 @@
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 @@
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