aboutsummaryrefslogtreecommitdiff
path: root/modules/parsers/gas/tests
diff options
context:
space:
mode:
Diffstat (limited to 'modules/parsers/gas/tests')
-rw-r--r--modules/parsers/gas/tests/bin/Makefile.inc8
-rw-r--r--modules/parsers/gas/tests/bin/gas-comment.asm2
-rw-r--r--modules/parsers/gas/tests/bin/gas-comment.errwarn2
-rw-r--r--modules/parsers/gas/tests/bin/rept-err.asm2
-rw-r--r--modules/parsers/gas/tests/bin/rept-err.errwarn2
5 files changed, 12 insertions, 4 deletions
diff --git a/modules/parsers/gas/tests/bin/Makefile.inc b/modules/parsers/gas/tests/bin/Makefile.inc
index 196b82a..39f12f0 100644
--- a/modules/parsers/gas/tests/bin/Makefile.inc
+++ b/modules/parsers/gas/tests/bin/Makefile.inc
@@ -6,8 +6,12 @@ EXTRA_DIST += modules/parsers/gas/tests/bin/gas_bin_test.sh
EXTRA_DIST += modules/parsers/gas/tests/bin/gas-comment.asm
EXTRA_DIST += modules/parsers/gas/tests/bin/gas-comment.errwarn
EXTRA_DIST += modules/parsers/gas/tests/bin/gas-comment.hex
+EXTRA_DIST += modules/parsers/gas/tests/bin/gas-intel_syntax-noprefix.asm
+EXTRA_DIST += modules/parsers/gas/tests/bin/gas-intel_syntax-noprefix.hex
EXTRA_DIST += modules/parsers/gas/tests/bin/gas-llabel.asm
EXTRA_DIST += modules/parsers/gas/tests/bin/gas-llabel.hex
+EXTRA_DIST += modules/parsers/gas/tests/bin/gas-macro.asm
+EXTRA_DIST += modules/parsers/gas/tests/bin/gas-macro.hex
EXTRA_DIST += modules/parsers/gas/tests/bin/gas-set.asm
EXTRA_DIST += modules/parsers/gas/tests/bin/gas-set.hex
EXTRA_DIST += modules/parsers/gas/tests/bin/rept-err.asm
@@ -16,8 +20,8 @@ EXTRA_DIST += modules/parsers/gas/tests/bin/reptempty.asm
EXTRA_DIST += modules/parsers/gas/tests/bin/reptempty.hex
EXTRA_DIST += modules/parsers/gas/tests/bin/reptlong.asm
EXTRA_DIST += modules/parsers/gas/tests/bin/reptlong.hex
-EXTRA_DIST += modules/parsers/gas/tests/bin/reptnested-err.asm
-EXTRA_DIST += modules/parsers/gas/tests/bin/reptnested-err.errwarn
+EXTRA_DIST += modules/parsers/gas/tests/bin/reptnested.asm
+EXTRA_DIST += modules/parsers/gas/tests/bin/reptnested.hex
EXTRA_DIST += modules/parsers/gas/tests/bin/reptsimple.asm
EXTRA_DIST += modules/parsers/gas/tests/bin/reptsimple.hex
EXTRA_DIST += modules/parsers/gas/tests/bin/reptwarn.asm
diff --git a/modules/parsers/gas/tests/bin/gas-comment.asm b/modules/parsers/gas/tests/bin/gas-comment.asm
index ee68e55..0c265f7 100644
--- a/modules/parsers/gas/tests/bin/gas-comment.asm
+++ b/modules/parsers/gas/tests/bin/gas-comment.asm
@@ -2,6 +2,8 @@
/* So is this */
+// and so is this
+
.byte 0 /* at end of line? */
.byte 0 /* at end of line,
diff --git a/modules/parsers/gas/tests/bin/gas-comment.errwarn b/modules/parsers/gas/tests/bin/gas-comment.errwarn
index 1fb55a3..6a29a1f 100644
--- a/modules/parsers/gas/tests/bin/gas-comment.errwarn
+++ b/modules/parsers/gas/tests/bin/gas-comment.errwarn
@@ -1 +1 @@
--:23: warning: end of file in comment
+-:25: warning: end of file in comment
diff --git a/modules/parsers/gas/tests/bin/rept-err.asm b/modules/parsers/gas/tests/bin/rept-err.asm
index 143e904..88582f9 100644
--- a/modules/parsers/gas/tests/bin/rept-err.asm
+++ b/modules/parsers/gas/tests/bin/rept-err.asm
@@ -1,2 +1,4 @@
.rept 6
+.endr
+.rept 3
.byte 0
diff --git a/modules/parsers/gas/tests/bin/rept-err.errwarn b/modules/parsers/gas/tests/bin/rept-err.errwarn
index 3f64c8e..5682b14 100644
--- a/modules/parsers/gas/tests/bin/rept-err.errwarn
+++ b/modules/parsers/gas/tests/bin/rept-err.errwarn
@@ -1 +1 @@
--:1: error: rept without matching endr
+-:3: error: rept without matching endr