From 8ab8df1170d0137c12fd38ee74e72f997b8395aa Mon Sep 17 00:00:00 2001 From: andy5995 Date: Thu, 25 Jul 2019 14:59:56 -0500 Subject: [PATCH] test/Makefile.am:add missing deps for test1 and test2 Allows the tests to pass when running `make distcheck` This fixes the 2 broken tests I mentioned at https://github.com/json-c/json-c/pull/499#discussion_r306998261 --- tests/Makefile.am | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/Makefile.am b/tests/Makefile.am index ea57bdab..a41aabcd 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -45,6 +45,8 @@ test1Formatted_CPPFLAGS = $(AM_CPPFLAGS) -DTEST_FORMATTED EXTRA_DIST+= test1Formatted_plain.expected EXTRA_DIST+= test1Formatted_pretty.expected EXTRA_DIST+= test1Formatted_spaced.expected +EXTRA_DIST+= test1Formatted_spaced_pretty.expected +EXTRA_DIST+= test1Formatted_spaced_pretty_pretty_tab.expected # Note: handled by test2.test check_PROGRAMS += test2Formatted @@ -53,6 +55,8 @@ test2Formatted_CPPFLAGS = $(AM_CPPFLAGS) -DTEST_FORMATTED EXTRA_DIST+= test2Formatted_plain.expected EXTRA_DIST+= test2Formatted_pretty.expected EXTRA_DIST+= test2Formatted_spaced.expected +EXTRA_DIST+= test2Formatted_spaced_pretty.expected +EXTRA_DIST+= test2Formatted_spaced_pretty_pretty_tab.expected test_util_file_SOURCES = test_util_file.c -- 2.39.5