Tom Finegan | faf4aa9 | 2014-04-28 16:58:40 -0700 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | ## |
| 3 | ## Copyright (c) 2014 The WebM project authors. All Rights Reserved. |
| 4 | ## |
| 5 | ## Use of this source code is governed by a BSD-style license |
| 6 | ## that can be found in the LICENSE file in the root of the source |
| 7 | ## tree. An additional intellectual property rights grant can be found |
| 8 | ## in the file PATENTS. All contributing project authors may |
| 9 | ## be found in the AUTHORS file in the root of the source tree. |
| 10 | ## |
| 11 | ## This file runs all of the tests for the libvpx examples. |
| 12 | ## |
| 13 | . $(dirname $0)/tools_common.sh |
| 14 | |
| 15 | example_tests=$(ls $(dirname $0)/*.sh) |
| 16 | |
| 17 | # List of script names to exclude. |
Tom Finegan | 4d91e16 | 2014-08-15 11:31:30 -0700 | [diff] [blame] | 18 | exclude_list="examples tools_common" |
Tom Finegan | faf4aa9 | 2014-04-28 16:58:40 -0700 | [diff] [blame] | 19 | |
| 20 | # Filter out the scripts in $exclude_list. |
| 21 | for word in ${exclude_list}; do |
| 22 | example_tests=$(filter_strings "${example_tests}" "${word}" exclude) |
| 23 | done |
| 24 | |
| 25 | for test in ${example_tests}; do |
| 26 | # Source each test script so that exporting variables can be avoided. |
Tom Finegan | bc27d7e | 2014-05-15 21:34:42 -0700 | [diff] [blame] | 27 | VPX_TEST_NAME="$(basename ${test%.*})" |
Tom Finegan | faf4aa9 | 2014-04-28 16:58:40 -0700 | [diff] [blame] | 28 | . "${test}" |
| 29 | done |