Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
9f0383c6
Commit
9f0383c6
authored
Jun 24, 2015
by
James Zern
Committed by
Gerrit Code Review
Jun 24, 2015
Browse files
Merge "build: add *test-no-data-check targets"
parents
4774d389
557ae511
Changes
2
Hide whitespace changes
Inline
Side-by-side
build/make/Makefile
View file @
9f0383c6
...
...
@@ -22,8 +22,10 @@ clean:: .DEFAULT
exampletest
:
.DEFAULT
install
::
.DEFAULT
test
::
.DEFAULT
test-no-data-check
::
.DEFAULT
testdata
::
.DEFAULT
utiltest
:
.DEFAULT
exampletest-no-data-check utiltest-no-data-check
:
.DEFAULT
# Note: md5sum is not installed on OS X, but openssl is. Openssl may not be
...
...
@@ -113,6 +115,9 @@ test::
testdata
::
.PHONY
:
utiltest
utiltest
:
.PHONY
:
test-no-data-check exampletest-no-data-check utiltest-no-data-check
test-no-data-check
::
exampletest-no-data-check utiltest-no-data-check
:
# Add compiler flags for intrinsic files
ifeq
($(TOOLCHAIN), x86-os2-gcc)
...
...
libs.mk
View file @
9f0383c6
...
...
@@ -508,11 +508,13 @@ INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += $(TEST_INTRA_PRED_SPEED_SRCS)
define
test_shard_template
test
::
test_shard.$(1)
test_shard.$(1)
:
$(LIBVPX_TEST_BIN) testdata
test-no-data-check
::
test_shard_ndc.$(1)
test_shard.$(1) test_shard_ndc.$(1)
:
$(LIBVPX_TEST_BIN)
@
set
-e
;
\
export
GTEST_SHARD_INDEX
=
$(1)
;
\
export
GTEST_TOTAL_SHARDS
=
$(2)
;
\
$(LIBVPX_TEST_BIN)
test_shard.$(1)
:
testdata
.PHONY
:
test_shard.$(1)
endef
...
...
@@ -557,15 +559,16 @@ ifeq ($(CONFIG_MSVS),yes)
# TODO(tomfinegan): Support running the debug versions of tools?
TEST_BIN_PATH
:=
$(
addsuffix
/
$(TGT_OS:win64=x64)
/Release,
$(TEST_BIN_PATH)
)
endif
utiltest
:
testdata
utiltest
utiltest-no-data-check
:
$(qexec)$(SRC_PATH_BARE)
/test/vpxdec.sh
\
--test-data-path
$(LIBVPX_TEST_DATA_PATH)
\
--bin-path
$(TEST_BIN_PATH)
$(qexec)$(SRC_PATH_BARE)
/test/vpxenc.sh
\
--test-data-path
$(LIBVPX_TEST_DATA_PATH)
\
--bin-path
$(TEST_BIN_PATH)
utiltest
:
testdata
else
utiltest
:
utiltest
utiltest-no-data-check
:
@
echo
Unit tests must be enabled to make the utiltest target.
endif
...
...
@@ -583,11 +586,12 @@ ifeq ($(CONFIG_MSVS),yes)
# TODO(tomfinegan): Support running the debug versions of tools?
EXAMPLES_BIN_PATH
:=
$(TGT_OS:win64=x64)
/Release
endif
exampletest
:
example
s
test
data
exampletest exampletest
-no-data-check
:
examples
$(qexec)$(SRC_PATH_BARE)
/test/examples.sh
\
--test-data-path
$(LIBVPX_TEST_DATA_PATH)
\
--bin-path
$(EXAMPLES_BIN_PATH)
exampletest
:
testdata
else
exampletest
:
exampletest
exampletest-no-data-check
:
@
echo
Unit tests must be enabled to make the exampletest target.
endif
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment