Ignore:
Timestamp:
Jul 17, 2011, 2:19:27 PM (14 years ago)
Author:
cla
Message:

rdfint

  • added target rdffail for maintainer, to execute failing testcases that should work well (to be examined!).

This target is NOT documented in the help text

File:
1 edited

Legend:

Unmodified
Added
Removed
  • php/trunk/unittest/makefile

    r49 r50  
    2525RDFTESTCASES= \
    2626amp-in-url/test001 \
    27 datatypes/test001  \
    28 datatypes/test002  \
     27datatypes/test001 \
     28datatypes/test002 \
    2929rdfms-reification-required/test001 \
    3030rdfms-xmllang/test001 \
     
    3636unrecognised-xml-attributes/test001 \
    3737unrecognised-xml-attributes/test002 \
     38
     39
     40# failing tescases, to be examined by maintainer
     41RDFTESTCASES_FAIL= \
     42rdf-element-not-mandatory/test001 \
     43rdfms-uri-substructure/test001 \
     44xml-canon/test001 \
    3845
    3946# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
     
    106113# - - - - - - - - - - - - - - - - - -
    107114
     115# for maintainers only
     116# execute all failing W3C RDF testcases
     117
     118rdffail:
     119ifeq ($(OS), Windows_NT)
     120        -@for /d %%c in ($(RDFTESTCASES_FAIL)) do @make -s TESTCASE=%%c SUBDIR=rdftestcases run
     121else
     122        -@for d in $(RDFTESTCASES_FAIL); do make -s TESTCASE=$$d SUBDIR=rdftestcases run; done
     123endif
     124
     125# - - - - - - - - - - - - - - - - - -
     126
    108127# this target to change into the subdirectory of
    109128# the testcase and execute it
Note: See TracChangeset for help on using the changeset viewer.