From 292dc2f5469f4080549a4e78c5c3cbdf58ea1f3e Mon Sep 17 00:00:00 2001 From: John Kerl Date: Wed, 3 Jan 2018 22:52:17 -0500 Subject: [PATCH] skip/pass-comments UT iterate --- c/reg_test/input/comments/Makefile.am | 4 ++++ c/reg_test/input/comments/comments1.json | 3 +++ c/reg_test/input/comments/comments2.json | 3 +++ c/reg_test/input/comments/comments3.json | 3 +++ 4 files changed, 13 insertions(+) create mode 100644 c/reg_test/input/comments/comments1.json create mode 100644 c/reg_test/input/comments/comments2.json create mode 100644 c/reg_test/input/comments/comments3.json diff --git a/c/reg_test/input/comments/Makefile.am b/c/reg_test/input/comments/Makefile.am index b2da0b476..2570d30f1 100644 --- a/c/reg_test/input/comments/Makefile.am +++ b/c/reg_test/input/comments/Makefile.am @@ -7,5 +7,9 @@ EXTRA_DIST= \ comments2.nidx \ comments3.nidx \ \ + comments1.json \ + comments2.json \ + comments3.json \ + \ comments1.xtab \ comments2.xtab diff --git a/c/reg_test/input/comments/comments1.json b/c/reg_test/input/comments/comments1.json new file mode 100644 index 000000000..a5d842336 --- /dev/null +++ b/c/reg_test/input/comments/comments1.json @@ -0,0 +1,3 @@ +# hello world 1 +{ "a":1, "b":2, "c":3 } +{ "a":4, "b":5, "c":6 } diff --git a/c/reg_test/input/comments/comments2.json b/c/reg_test/input/comments/comments2.json new file mode 100644 index 000000000..d020ac685 --- /dev/null +++ b/c/reg_test/input/comments/comments2.json @@ -0,0 +1,3 @@ +{ "a":1, "b":2, "c":3 } +# hello world 2 +{ "a":4, "b":5, "c":6 } diff --git a/c/reg_test/input/comments/comments3.json b/c/reg_test/input/comments/comments3.json new file mode 100644 index 000000000..104fae21c --- /dev/null +++ b/c/reg_test/input/comments/comments3.json @@ -0,0 +1,3 @@ +{ "a":1, "b":2, "c":3 } +{ "a":4, "b":5, "c":6 } +# hello world 3