summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2026-01-22 02:24:44 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2026-01-22 02:24:44 +0100
commit069301a603ad07338179bafed0c35b6fe3b372f2 (patch)
tree74010f542968876938d18effe8939694ddafdc03 /tests
parentac3c52c4431d422affe951ff0641b4eb04787e54 (diff)
downloadcrep-069301a603ad07338179bafed0c35b6fe3b372f2.tar.gz
Better arg parsing
Diffstat (limited to 'tests')
-rw-r--r--tests/depth_test/level0.c1
-rw-r--r--tests/depth_test/sub/level1.c1
-rw-r--r--tests/test.c5
3 files changed, 7 insertions, 0 deletions
diff --git a/tests/depth_test/level0.c b/tests/depth_test/level0.c
new file mode 100644
index 0000000..a872dab
--- /dev/null
+++ b/tests/depth_test/level0.c
@@ -0,0 +1 @@
+void level0() {}
diff --git a/tests/depth_test/sub/level1.c b/tests/depth_test/sub/level1.c
new file mode 100644
index 0000000..e4fd738
--- /dev/null
+++ b/tests/depth_test/sub/level1.c
@@ -0,0 +1 @@
+void level1() {}
diff --git a/tests/test.c b/tests/test.c
index 4326f11..1d5fd3f 100644
--- a/tests/test.c
+++ b/tests/test.c
@@ -30,3 +30,8 @@ int main() {
hello();
return 0;
}
+
+// Case sensitivity tests
+void FooBar() {}
+void foobar() {}
+void FOOBAR() {}