diff options
author | Case Duckworth | 2023-04-04 09:26:45 -0500 |
---|---|---|
committer | Case Duckworth | 2023-04-04 09:26:45 -0500 |
commit | 8c7ce9b5e1581223de11b8f59ccce8d79e93a354 (patch) | |
tree | 8837c493415b72ace7a0eeb27e2cd2fea24f2047 | |
parent | Add command line arguments (diff) | |
download | wikme-8c7ce9b5e1581223de11b8f59ccce8d79e93a354.tar.gz wikme-8c7ce9b5e1581223de11b8f59ccce8d79e93a354.zip |
Add testing
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | README.txt | 9 |
2 files changed, 11 insertions, 2 deletions
diff --git a/Makefile b/Makefile index 1dd66d1..e0723e5 100644 --- a/Makefile +++ b/Makefile | |||
@@ -22,7 +22,9 @@ $(LIB): $(SOURCE) | |||
22 | install: $(NAME) | 22 | install: $(NAME) |
23 | install -Dt $(DESTDIR)$(PREFIX)/$@ $(NAME) | 23 | install -Dt $(DESTDIR)$(PREFIX)/$@ $(NAME) |
24 | 24 | ||
25 | test: # TODO | 25 | test: $(NAME) |
26 | @echo "Converting test/ to a wiki in out/ ..." | ||
27 | ./$(NAME) test -o out | ||
26 | 28 | ||
27 | clean: | 29 | clean: |
28 | rm -f *.import.scm *.so *.o | 30 | rm -f *.import.scm *.so *.o |
diff --git a/README.txt b/README.txt index ed0c990..941b207 100644 --- a/README.txt +++ b/README.txt | |||
@@ -14,9 +14,16 @@ requirements: | |||
14 | 14 | ||
15 | build: | 15 | build: |
16 | 16 | ||
17 | - ./bootstrap | ||
18 | - make | 17 | - make |
19 | 18 | ||
20 | install: | 19 | install: |
21 | 20 | ||
22 | - make install | 21 | - make install |
22 | |||
23 | test: | ||
24 | |||
25 | - make test | ||
26 | |||
27 | [Build the files in test/ to out/. This is not a great testing framework yet.] | ||
28 | |||
29 | |||