summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorLv Zheng <lv.zheng@intel.com>2017-05-03 15:06:29 +0800
committerLv Zheng <lv.zheng@intel.com>2017-05-03 15:06:29 +0800
commit14a1c314329e8b66e523c93b38de6f14436635dc (patch)
tree764aaac2dd626156ad902913163eca571a415123 /tests
parente71f4639a9e729982f01c865c268b0e3bd44cf3e (diff)
downloadacpica-14a1c314329e8b66e523c93b38de6f14436635dc.tar.gz
ASLTS: scripts: Fix directory name of Identity2MS tests
This patch fixes the Identity2MS collection's directory name of its sub-test-cases in order to fix unexpected error occurred to the following command: aslts.sh -u -m n32 -c extra_aslts The Identity2MS test cases are located at Identity2MS/abbu, rather than Identity2MS/extra or Identity2MS/extra_aslts. Lv Zheng. Signed-off-by: Lv Zheng <lv.zheng@intel.com>
Diffstat (limited to 'tests')
-rwxr-xr-xtests/aslts/bin/common2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/aslts/bin/common b/tests/aslts/bin/common
index 22704c5f7..f2743a8a6 100755
--- a/tests/aslts/bin/common
+++ b/tests/aslts/bin/common
@@ -362,6 +362,8 @@ get_test_case_dir()
path="`get_collection_dir "$1" $2`/ACPICA/tests/$3"
elif [ $3 == bdemo -o $3 == bdemof ]; then
path="`get_collection_dir "$1" $2`/ACPICA/$3"
+ elif [ $3 == extra -o $3 == extra_aslts ]; then
+ path="`get_collection_dir "$1" $2`/abbu"
elif [[ $3 == mt_* ]]; then
x=`echo $3 | sed 's/mt_//'g`
path="`get_collection_dir "$1" $2`/$x"