aboutsummaryrefslogtreecommitdiff
path: root/tests/test_macro_processor.sh
diff options
context:
space:
mode:
authorQrius <[email protected]>2025-05-06 14:22:33 +0200
committerQrius <[email protected]>2025-05-06 14:23:04 +0200
commit77e73d70a9b81a7bbd8e49be52612fc62a9f9502 (patch)
treec816ff6a30dee18e2c701cfd83c3e9104e73e333 /tests/test_macro_processor.sh
parent68f3e45b0c9570e4bdf01147f606f04bda6be310 (diff)
downloadskaldpress-77e73d70a9b81a7bbd8e49be52612fc62a9f9502.tar.gz
skaldpress-77e73d70a9b81a7bbd8e49be52612fc62a9f9502.zip
Disable unsafe code execution by default
Diffstat (limited to 'tests/test_macro_processor.sh')
-rwxr-xr-xtests/test_macro_processor.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_macro_processor.sh b/tests/test_macro_processor.sh
index daee5d2..96fc04a 100755
--- a/tests/test_macro_processor.sh
+++ b/tests/test_macro_processor.sh
@@ -9,7 +9,7 @@ test () {
var2=$(echo "$file_content" | awk -v RS="\n---\n" 'NR==2')
if [ "$ALL_OUTPUT" -eq 0 ]; then
- res=$(echo -n "$var1" | smp 2> /dev/null)
+ res=$(echo -n "$var1" | smp -U 2> /dev/null)
else
res=$(echo -n "$var1" | smp)
fi