aboutsummaryrefslogtreecommitdiff
path: root/test/errors/parser
diff options
context:
space:
mode:
authorAdam Izraelevitz2016-08-15 10:32:41 -0700
committerGitHub2016-08-15 10:32:41 -0700
commitbebd04c4c68c320b2b72325e348c726dc33beae6 (patch)
tree69f6d4da577977cc7ff428b0545bb4735507aad0 /test/errors/parser
parentcca37c46fc0848f5dbf5f95ba60755ed6d60712b (diff)
Remove stanza (#231)
* Removed stanza implementation/tests. In the future we can move the stanza tests over, but for now they should be deleted. * Added back integration .fir files * Added Makefile to give Travis hooks * Added firrtl script (was ignored before)
Diffstat (limited to 'test/errors/parser')
-rw-r--r--test/errors/parser/InstanceNotRef.fir8
-rw-r--r--test/errors/parser/Nested-Module.fir6
-rw-r--r--test/errors/parser/Statements-in-Circuit.fir5
3 files changed, 0 insertions, 19 deletions
diff --git a/test/errors/parser/InstanceNotRef.fir b/test/errors/parser/InstanceNotRef.fir
deleted file mode 100644
index 0760f168..00000000
--- a/test/errors/parser/InstanceNotRef.fir
+++ /dev/null
@@ -1,8 +0,0 @@
-; RUN: firrtl -i %s -o %s.flo -x X -p c | tee %s.out | FileCheck %s
-; CHECK: FIRRTL Parsing Error: Expected a statement here.
-
-circuit Top :
- module Top :
- wire x : UInt<1>
- inst t of add(UInt(1),UInt(1))
-
diff --git a/test/errors/parser/Nested-Module.fir b/test/errors/parser/Nested-Module.fir
deleted file mode 100644
index 3f06db76..00000000
--- a/test/errors/parser/Nested-Module.fir
+++ /dev/null
@@ -1,6 +0,0 @@
-; RUN: firrtl -i %s -o %s.flo -x X -p c | tee %s.out | FileCheck %s
-; CHECK: FIRRTL Parsing Error: Expected a statement here.
-
-circuit Nested-Module :
- module Top :
- module Child :
diff --git a/test/errors/parser/Statements-in-Circuit.fir b/test/errors/parser/Statements-in-Circuit.fir
deleted file mode 100644
index 5f675e82..00000000
--- a/test/errors/parser/Statements-in-Circuit.fir
+++ /dev/null
@@ -1,5 +0,0 @@
-; RUN: firrtl -i %s -o %s.flo -x X -p c | tee %s.out | FileCheck %s
-; CHECK: FIRRTL Parsing Error: Expected a module declaration here.
-
-circuit Statement-in-Circuit :
- node x : UInt(1)