├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── ctest.h ├── ctest_output.png ├── main.c └── mytests.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bvdberg/ctest/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bvdberg/ctest/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bvdberg/ctest/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bvdberg/ctest/HEAD/README.md -------------------------------------------------------------------------------- /ctest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bvdberg/ctest/HEAD/ctest.h -------------------------------------------------------------------------------- /ctest_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bvdberg/ctest/HEAD/ctest_output.png -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bvdberg/ctest/HEAD/main.c -------------------------------------------------------------------------------- /mytests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bvdberg/ctest/HEAD/mytests.c --------------------------------------------------------------------------------