diff options
author | Eric Anholt <eric@anholt.net> | 2012-04-16 09:53:29 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2012-04-19 16:33:31 -0700 |
commit | cc7e0de009a0ab528fe950b17fa465a0a97988fc (patch) | |
tree | 0c02b3ae2cdd483fe6908f1bf3289c833671c9f6 /src | |
parent | 86f270e0a9d34dd2b6689b7f7c693620db65098c (diff) |
glsl: Convert the tests directory to automake.
This runs optimization-test and produces the usual automake test
output, which may be interesting to automated build systems.
This doesn't convert the tests to be individually exposed to the
automake runner, because automake doesn't like wildcards (due to being
nonportable in make, not that we care).
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/glsl/tests/.gitignore | 1 | ||||
-rw-r--r-- | src/glsl/tests/Makefile.am | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/glsl/tests/.gitignore b/src/glsl/tests/.gitignore new file mode 100644 index 00000000000..f3c7a7c5da6 --- /dev/null +++ b/src/glsl/tests/.gitignore @@ -0,0 +1 @@ +Makefile diff --git a/src/glsl/tests/Makefile.am b/src/glsl/tests/Makefile.am new file mode 100644 index 00000000000..bfd97b3b831 --- /dev/null +++ b/src/glsl/tests/Makefile.am @@ -0,0 +1,2 @@ +TESTS = \ + optimization-test |