Fix failing test
Fix location of test vpd file.
Disable the test program 'parser_test' from running via 'make check'.
This is more of a tool rather than a unit-test, and needs to be
converted to unit-tests by making it work with encoded vpd buffers.
Change-Id: Ib67112e4005dab62976458ec7b587bc302044170
Signed-off-by: Deepak Kodihalli <dkodihal@in.ibm.com>
diff --git a/test/Makefile.am b/test/Makefile.am
index 4e69969..7c09b1c 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -1,13 +1,11 @@
AM_CPPFLAGS = -I$(top_srcdir)
-check_PROGRAMS =
-
TESTS = $(check_PROGRAMS)
-check_PROGRAMS += store_test
+check_PROGRAMS = store_test
store_test_SOURCES = store/store.cpp
-check_PROGRAMS += parser_test
+noinst_PROGRAMS = parser_test
parser_test_SOURCES = \
parser/parser.cpp \
../impl.cpp \