aboutsummaryrefslogtreecommitdiffstats
path: root/test/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'test/Makefile.in')
-rw-r--r--test/Makefile.in13
1 files changed, 12 insertions, 1 deletions
diff --git a/test/Makefile.in b/test/Makefile.in
index bd261a5b..5496d3cf 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -1326,6 +1326,8 @@ EXTRA_DIST = \
rwarray.awk \
rwarray.in \
rwarray.ok \
+ sandbox1.awk \
+ sandbox1.ok \
scalar.awk \
scalar.ok \
sclforin.awk \
@@ -1613,7 +1615,8 @@ GAWK_EXT_TESTS = \
profile7 profile8 profile9 profile10 profile11 profile12 pty1 pty2 \
rebuf regnul1 regnul2 regx8bit reginttrad reint reint2 rsgetline rsglstdin \
rsstart1 rsstart2 rsstart3 rstest6 \
- shadow shadowbuiltin sortfor sortfor2 sortu sourcesplit split_after_fpat \
+ sandbox1 shadow shadowbuiltin sortfor sortfor2 sortu \
+ sourcesplit split_after_fpat \
splitarg4 strftfld strftime strtonum strtonum1 switch2 symtab1 symtab2 \
symtab3 symtab4 symtab5 symtab6 symtab7 symtab8 symtab9 symtab10 \
timeout typedregex1 typedregex2 typedregex3 typedregex4 \
@@ -1673,6 +1676,9 @@ NEED_PRETTY = nsprof1 nsprof2 \
# List of tests that need --re-interval
NEED_RE_INTERVAL = gsubtst3 reint reint2
+# List of tests that need --sandbox
+NEED_SANDBOX = sandbox1
+
# List of tests that need --traditional
NEED_TRADITIONAL = litoct tradanch rscompat
@@ -4591,6 +4597,11 @@ rstest6:
@AWKPATH="$(srcdir)" $(AWK) -f $@.awk < "$(srcdir)"/$@.in >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
@-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@
+sandbox1:
+ @echo $@
+ @AWKPATH="$(srcdir)" $(AWK) -f $@.awk --sandbox >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
+ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@
+
shadow:
@echo $@
@AWKPATH="$(srcdir)" $(AWK) -f $@.awk --lint >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@