From 7674d89a85624f0d33c24aa63aa0879e39dc516a Mon Sep 17 00:00:00 2001 From: Swapnil Date: Fri, 22 Apr 2022 19:24:55 +0530 Subject: [PATCH] a quick fix for a non-conformant variable (#1881) * a quick fix for a non-conformant variable * Update T1574.006.yaml Co-authored-by: Carrie Roberts --- atomics/T1574.006/T1574.006.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/atomics/T1574.006/T1574.006.yaml b/atomics/T1574.006/T1574.006.yaml index 24a1e1a4..693a271d 100644 --- a/atomics/T1574.006/T1574.006.yaml +++ b/atomics/T1574.006/T1574.006.yaml @@ -23,7 +23,7 @@ atomic_tests: - description: | The shared library must exist on disk at specified location (#{path_to_shared_library}) prereq_command: | - if [ -f #{path_to_shared_library ]; then exit 0; else exit 1; fi; + if [ -f #{path_to_shared_library} ]; then exit 0; else exit 1; fi; get_prereq_command: | gcc -shared -fPIC -o #{path_to_shared_library} #{path_to_shared_library_source} executor: @@ -61,4 +61,4 @@ atomic_tests: executor: command: | LD_PRELOAD=#{path_to_shared_library} ls - name: bash \ No newline at end of file + name: bash