diff options
author | Tom Stellard <thomas.stellard@amd.com> | 2012-07-11 19:56:43 +0000 |
---|---|---|
committer | Tom Stellard <thomas.stellard@amd.com> | 2012-07-11 19:56:43 +0000 |
commit | ee925820eb32fd5c5e21030dbafb84cb80c71d65 (patch) | |
tree | 72cb79be7da10f8d73a497a7eb03ac7c75853eae | |
parent | 714bcf260f8a180c877783c5d50f4865f16a7ec9 (diff) |
run_tests: Clear memory with 0xDEADBEEF instead of 0
-rw-r--r-- | run_tests.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_tests.sh b/run_tests.sh index 72bf9a2..5819680 100644 --- a/run_tests.sh +++ b/run_tests.sh @@ -18,7 +18,7 @@ run_test () { } clear_memory() { - `./memset 0 $1 1 1 &>/dev/null` + `./memset 373598559 $1 1 1 &>/dev/null` } ################################################################################ |