unignore test and add test case to thoroughly test

This commit is contained in:
gluaxspeed 2021-02-05 11:36:21 -05:00
parent 9d881fd2a4
commit 59acb1a022
3 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
circuit Baz {
z: u32
}
circuit Bazzar {
a: u32
}

View File

@ -5,7 +5,7 @@ import test-import.( // local import
import bar.( // imports directory import
Bar,
baz.Baz,
baz.(Baz, Bazzar),
bat.bat.Bat,
);
@ -17,6 +17,7 @@ function main() {
const bar = Bar { r: 1u32 };
const baz = Baz { z: 1u32 };
const bazzar = Bazzar { a: 1u32 };
const bat = Bat { t: 1u32 };
const car = Car { c: 1u32 };

View File

@ -132,7 +132,6 @@ fn test_names_fail_4() {
// more complex tests
#[test]
#[ignore]
fn test_many_import() {
set_local_dir();