소스 검색

document new features

Mike Frysinger 18 년 전
부모
커밋
7434d62244
1개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  1. 4 2
      test/README

+ 4 - 2
test/README

@@ -23,9 +23,11 @@ The structure of this test system is:
  test/subdir/Makefile  describe the tests to run
  test/subdir/*.c       the tests
 
-Each subdir Makefile must define the TESTS variable and include the
-toplevel Test.mak file:
+Each subdir Makefile must include the toplevel Test.mak file.  Before doing so,
+you may define the TESTS and TESTS_DISABLED variables.  If you do not, TESTS
+is built automatically based upon all the .c files in the subdir.
 TESTS := foo
+TESTS_DISABLED := bar
 include ../Test.mak
 Each test must use a similar .c name; so the "foo" test needs a "foo.c".