Update of /cvsroot/sblim/cmpi-tests/cmpi-processindicationtest
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25942
Modified Files:
Makefile.am
Log Message:
fixes for http://sourceforge.net/tracker/index.php?func=detail&aid=1214004&group_id=128809&atid=712784
Index: Makefile.am
===================================================================
RCS file: /cvsroot/sblim/cmpi-tests/cmpi-processindicationtest/Makefile.am,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- Makefile.am 25 May 2005 20:10:50 -0000 1.1.1.1
+++ Makefile.am 6 Jun 2005 17:14:44 -0000 1.2
@@ -79,7 +79,49 @@
sh provider-register.sh -d -t @CIMSERVER@ -r $(REGS) -m $(MOFS)
# Add the schema files to the distribution file list
-pkgdata_DATA=$(MOFS) $(REGISTRATIONS)
+pkgdata_DATA=$(MOFS) $(REGS)
pkgdata_SCRIPTS=provider-register.sh
EXTRA_DIST+=schema $(pkgdata_DATA) $(pkgdata_SCRIPTS)
+# -----------------------------------------------------------------------------
+# Automake instructions for tests
+# -----------------------------------------------------------------------------
+
+# LIST ALL THE TEST XML CLIENT REQUEST FILES HERE
+TESTXML=test/Test001.DeleteFilter01.xml \
+ test/Test002.DeleteHandler01.xml \
+ test/Test003.DeleteSubscription01.xml \
+ test/Test004.CreateSubscription01.xml \
+ test/Test005.CreateFilter01.xml \
+ test/Test006.CreateSubscription01.xml \
+ test/Test007.CreateHandler01.xml \
+ test/Test008.CreateSubscription01.xml \
+ test/Test009.DeleteFilter01.xml \
+ test/Test010.DeleteHandler01.xml \
+ test/Test011.DeleteSubscription01.xml \
+ test/Test012.DeleteFilter01.xml \
+ test/Test013.DeleteHandler01.xml
+
+# LIST ALL THE TEST EXPECTED RESPONSE OK FILES HERE
+TESTOK=test/Test001.DeleteFilter01.OK \
+ test/Test002.DeleteHandler01.OK \
+ test/Test003.DeleteSubscription01.OK \
+ test/Test004.CreateSubscription01.OK \
+ test/Test005.CreateFilter01.OK \
+ test/Test006.CreateSubscription01.OK \
+ test/Test007.CreateHandler01.OK \
+ test/Test008.CreateSubscription01.OK \
+ test/Test009.DeleteFilter01.OK \
+ test/Test010.DeleteHandler01.OK \
+ test/Test011.DeleteSubscription01.OK \
+ test/Test012.DeleteFilter01.OK \
+ test/Test013.DeleteHandler01.OK
+
+# Install the XML tests under the package's data directory
+testxmldir=$(datadir)/$(PACKAGE)/xmltest
+testxml_DATA=$(TESTXML) $(TESTOK)
+testxml_SCRIPTS=
+
+# Run all the package XML tests in order
+runtest:
+ xmltest $(datadir)/$(PACKAGE)/xmltest
|