diff options
-rwxr-xr-x | embedded-test.sh | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/embedded-test.sh b/embedded-test.sh index ef8115d..3d11fee 100755 --- a/embedded-test.sh +++ b/embedded-test.sh @@ -449,6 +449,12 @@ cat >> ${root}/run.sh << EOF exit EOF fi + if [ $test = "mksh" ];then +cat >> ${root}/run.sh << EOF +mksh /opt/mksh/test.sh +exit +EOF + fi if [ $test = "libc" ];then case $lib in @@ -536,6 +542,9 @@ build() { if [ $test = "ltp" ];then DEFAULT="$DEFAULT ADK_TEST_LTP=y" fi + if [ $test = "mksh" ];then + DEFAULT="$DEFAULT ADK_TEST_MKSH=y" + fi if [ $test = "libc" ];then case $lib in uclibc-ng) @@ -792,7 +801,7 @@ for lib in ${libc}; do build $lib $arch notest if [ ! -z "$tests" ];then for test in ${tests}; do - if [ $test = "boot" -o $test = "libc" -o $test = "ltp" -o $test = "native" ];then + if [ $test = "boot" -o $test = "libc" -o $test = "ltp" -o $test = "native" -o $test = "mksh" ];then case $lib in uclibc-ng) case $arch in |