Skip to content

Commit 080f58b

Browse files
committed
Add make test
1 parent 40339e0 commit 080f58b

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,8 @@ format:
1818

1919
clean:
2020
rm -f *.o
21-
21+
22+
test:
23+
for i in `seq 1 5`; do ./tests.py || exit 1; done
24+
2225
.PHONY: clean

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
11
## Simple application to track CPU usage
2+
3+
### To compile, run ``make``
4+
### To test, run ``make test``

0 commit comments

Comments
 (0)