exclude *.dll files from ASLR test 37/235937/1 accepted/tizen/unified/20200616.170956 submit/tizen/20200615.072038
authorKidong Kim <kd0228.kim@samsung.com>
Thu, 11 Jun 2020 06:40:28 +0000 (15:40 +0900)
committerKidong Kim <kd0228.kim@samsung.com>
Thu, 11 Jun 2020 06:40:28 +0000 (15:40 +0900)
Change-Id: I37c78839d2a6d77afb48e347516eb7e19401fe0a

test/aslr_test/scripts/run_aslr_test_all_files.sh

index 909cb3beda3f5f1539f82de7a96cebca2931be58..bb0e160fc6767fa8df6397a51a3684ee3d794020 100644 (file)
@@ -17,6 +17,13 @@ function CHECK_EXCEPTION
                echo "find exception" "$1"
                return 1
        fi
+       filename=$(basename $1)
+       fileext=${filename##*.}
+       if [ $fileext == "dll" ]
+       then
+               echo "*.dll files are excluded : " "$1"
+               return 1
+       fi
        return 0
 }