Skip to content

Commit 36a18fb

Browse files
authored
Merge pull request #65 from vnarapar/kaslr_fix
Minor fix for KASLR
2 parents 3bd98cd + c31d100 commit 36a18fb

File tree

1 file changed

+1
-1
lines changed
  • Runner/suites/Kernel/FunctionalArea/baseport/kaslr

1 file changed

+1
-1
lines changed

Runner/suites/Kernel/FunctionalArea/baseport/kaslr/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ output=$(cat /proc/kallsyms | grep stext)
4343

4444
value=$(echo $output | awk '{print $1}')
4545

46-
if [ $value = "0000000000000000" ]; then
46+
if [ $value != "0000000000000000" ]; then
4747
log_pass "$TESTNAME : Test Passed"
4848
echo "$TESTNAME PASS" > "$res_file"
4949
else

0 commit comments

Comments
 (0)