From 5f5fef54bd8a6adf13c0d5f8eabdbc1d0d4b3e4a Mon Sep 17 00:00:00 2001 From: Minseong Jang Date: Sat, 2 Apr 2022 19:45:10 +0900 Subject: [PATCH] Remove sizeof2 example from small testcase --- tests/test_examples.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/test_examples.rs b/tests/test_examples.rs index fc37909..0553e27 100644 --- a/tests/test_examples.rs +++ b/tests/test_examples.rs @@ -46,13 +46,14 @@ fn test_opt_between_dirs>(from: &Path, to: &Pat } } -const IRGEN_SMALL_TEST_IGNORE_LIST: [&str; 10] = [ +const IRGEN_SMALL_TEST_IGNORE_LIST: [&str; 11] = [ "examples/c/array.c", "examples/c/array2.c", "examples/c/array3.c", "examples/c/array4.c", "examples/c/array5.c", "examples/c/float.c", + "examples/c/sizeof2.c", "examples/c/struct.c", "examples/c/struct2.c", "examples/c/struct3.c", @@ -67,13 +68,14 @@ const ASMGEN_TEST_DIR_LIST: [&str; 5] = [ "examples/ir4", ]; -const ASMGEN_SMALL_TEST_IGNORE_LIST: [&str; 10] = [ +const ASMGEN_SMALL_TEST_IGNORE_LIST: [&str; 11] = [ "array.ir", "array2.ir", "array3.ir", "array4.ir", "array5.ir", "float.ir", + "sizeof2.ir", "struct.ir", "struct2.ir", "struct3.ir",