|
Revision 1, 1.2 KB
(checked in by cristy, 3 months ago)
|
|
|
| Line | |
|---|
| 1 | # Copyright 1999-2009 ImageMagick Studio LLC, a non-profit organization |
|---|
| 2 | # dedicated to making software imaging solutions freely available. |
|---|
| 3 | # |
|---|
| 4 | # You may not use this file except in compliance with the License. |
|---|
| 5 | # obtain a copy of the License at |
|---|
| 6 | # |
|---|
| 7 | # http://www.imagemagick.org/script/license.php |
|---|
| 8 | # |
|---|
| 9 | # Unless required by applicable law or agreed to in writing, software |
|---|
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
|---|
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|---|
| 12 | # See the License for the specific language governing permissions and |
|---|
| 13 | # limitations under the License. |
|---|
| 14 | # |
|---|
| 15 | # Makefile for the ImageMagick validation suite. |
|---|
| 16 | |
|---|
| 17 | TESTS_CHECK_PGRMS = \ |
|---|
| 18 | tests/validate |
|---|
| 19 | |
|---|
| 20 | tests_validate_SOURCES = tests/validate.c tests/validate.h |
|---|
| 21 | tests_validate_CPPFLAGS = $(AM_CPPFLAGS) |
|---|
| 22 | tests_validate_LDADD = $(MAGICKCORE_LIBS) $(MAGICKWAND_LIBS) |
|---|
| 23 | |
|---|
| 24 | TESTS_XFAIL_TESTS = |
|---|
| 25 | |
|---|
| 26 | TESTS_TESTS = \ |
|---|
| 27 | tests/validate-compare.sh \ |
|---|
| 28 | tests/validate-composite.sh \ |
|---|
| 29 | tests/validate-convert.sh \ |
|---|
| 30 | tests/validate-formats-on-disk.sh \ |
|---|
| 31 | tests/validate-formats-in-memory.sh \ |
|---|
| 32 | tests/validate-identify.sh \ |
|---|
| 33 | tests/validate-import.sh \ |
|---|
| 34 | tests/validate-montage.sh \ |
|---|
| 35 | tests/validate-stream.sh |
|---|
| 36 | |
|---|
| 37 | TESTS_EXTRA_DIST = \ |
|---|
| 38 | tests/common.sh \ |
|---|
| 39 | $(TESTS_TESTS) |
|---|
| 40 | |
|---|
| 41 | TESTS_CLEANFILES = |
|---|