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>
This commit is contained in:
Joe Subbiani 2021-07-28 15:51:02 +01:00
parent 4a703cef89
commit f3fcc29eb1
4 changed files with 4 additions and 4 deletions

View File

@ -320,10 +320,10 @@ add_common_ciphersuites()
M_CIPHERS="$M_CIPHERS $CIPHERS" 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" 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" O_CIPHERS="$O_CIPHERS $O"
} }
@ -406,7 +406,7 @@ add_openssl_ciphersuites()
M_CIPHERS="$M_CIPHERS $CIPHERS" 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" O_CIPHERS="$O_CIPHERS $O"
} }
@ -539,7 +539,7 @@ add_gnutls_ciphersuites()
M_CIPHERS="$M_CIPHERS $CIPHERS" 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" G_CIPHERS="$G_CIPHERS $G"
} }