From 085ba4b627a13f259dcb84f856768f605e4ac0aa Mon Sep 17 00:00:00 2001 From: Sean Barrett Date: Tue, 30 Jan 2018 05:31:18 -0800 Subject: [PATCH] add compilation tests that have no other includes to avoid accidental dependencies --- tests/test_c_lexer.c | 1 + tests/test_dxt.c | 1 + tests/test_easyfont.c | 1 + tests/test_image.c | 1 + tests/test_image_write.c | 1 + tests/test_perlin.c | 1 + tests/test_sprintf.c | 1 + tests/test_voxel.c | 1 + 8 files changed, 8 insertions(+) create mode 100644 tests/test_c_lexer.c create mode 100644 tests/test_dxt.c create mode 100644 tests/test_easyfont.c create mode 100644 tests/test_image.c create mode 100644 tests/test_image_write.c create mode 100644 tests/test_perlin.c create mode 100644 tests/test_sprintf.c create mode 100644 tests/test_voxel.c diff --git a/tests/test_c_lexer.c b/tests/test_c_lexer.c new file mode 100644 index 0000000..579ed5d --- /dev/null +++ b/tests/test_c_lexer.c @@ -0,0 +1 @@ +#include "stb_c_lexer.h" diff --git a/tests/test_dxt.c b/tests/test_dxt.c new file mode 100644 index 0000000..a1ef29d --- /dev/null +++ b/tests/test_dxt.c @@ -0,0 +1 @@ +#include "stb_dxt.h" diff --git a/tests/test_easyfont.c b/tests/test_easyfont.c new file mode 100644 index 0000000..70f284b --- /dev/null +++ b/tests/test_easyfont.c @@ -0,0 +1 @@ +#include "stb_easy_font.h" diff --git a/tests/test_image.c b/tests/test_image.c new file mode 100644 index 0000000..e23d4a0 --- /dev/null +++ b/tests/test_image.c @@ -0,0 +1 @@ +#include "stb_image.h" \ No newline at end of file diff --git a/tests/test_image_write.c b/tests/test_image_write.c new file mode 100644 index 0000000..cf23025 --- /dev/null +++ b/tests/test_image_write.c @@ -0,0 +1 @@ +#include "stb_image_write.h" \ No newline at end of file diff --git a/tests/test_perlin.c b/tests/test_perlin.c new file mode 100644 index 0000000..de702c9 --- /dev/null +++ b/tests/test_perlin.c @@ -0,0 +1 @@ +#include "stb_perlin.h" \ No newline at end of file diff --git a/tests/test_sprintf.c b/tests/test_sprintf.c new file mode 100644 index 0000000..078faa8 --- /dev/null +++ b/tests/test_sprintf.c @@ -0,0 +1 @@ +#include "stb_sprintf.h" \ No newline at end of file diff --git a/tests/test_voxel.c b/tests/test_voxel.c new file mode 100644 index 0000000..e177b6f --- /dev/null +++ b/tests/test_voxel.c @@ -0,0 +1 @@ +#include "stb_voxel_render.h" \ No newline at end of file