| OLD | NEW |
| 1 #!/bin/bash | 1 #!/bin/bash |
| 2 # Copyright 2013 The Chromium Authors. All rights reserved. | 2 # Copyright 2013 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 # This a simple script to make building/testing Mojo components easier (on | 6 # This a simple script to make building/testing Mojo components easier (on |
| 7 # Linux). | 7 # Linux). |
| 8 | 8 |
| 9 # TODO(vtl): Maybe make the test runner smart and not run unchanged test | 9 # TODO(vtl): Maybe make the test runner smart and not run unchanged test |
| 10 # binaries. | 10 # binaries. |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 EOF | 40 EOF |
| 41 } | 41 } |
| 42 | 42 |
| 43 do_build() { | 43 do_build() { |
| 44 echo "Building in out/$1 ..." | 44 echo "Building in out/$1 ..." |
| 45 ninja -C "out/$1" mojo || exit 1 | 45 ninja -C "out/$1" mojo || exit 1 |
| 46 } | 46 } |
| 47 | 47 |
| 48 do_unittests() { | 48 do_unittests() { |
| 49 echo "Running unit tests in out/$1 ..." | 49 echo "Running unit tests in out/$1 ..." |
| 50 "out/$1/mojo_bindings_unittests" || exit 1 | |
| 51 "out/$1/mojo_common_unittests" || exit 1 | 50 "out/$1/mojo_common_unittests" || exit 1 |
| 52 "out/$1/mojo_js_unittests" || exit 1 | 51 "out/$1/mojo_js_unittests" || exit 1 |
| 53 "out/$1/mojo_public_unittests" || exit 1 | 52 "out/$1/mojo_public_bindings_unittests" || exit 1 |
| 53 "out/$1/mojo_public_system_unittests" || exit 1 |
| 54 "out/$1/mojo_public_utility_unittests" || exit 1 |
| 54 "out/$1/mojo_shell_unittests" || exit 1 | 55 "out/$1/mojo_shell_unittests" || exit 1 |
| 55 "out/$1/mojo_system_unittests" || exit 1 | 56 "out/$1/mojo_system_unittests" || exit 1 |
| 56 "out/$1/mojo_utility_unittests" || exit 1 | 57 "out/$1/mojo_utility_unittests" || exit 1 |
| 57 } | 58 } |
| 58 | 59 |
| 59 do_perftests() { | 60 do_perftests() { |
| 60 echo "Running perf tests in out/$1 ..." | 61 echo "Running perf tests in out/$1 ..." |
| 61 "out/$1/mojo_public_perftests" || exit 1 | 62 "out/$1/mojo_public_system_perftests" || exit 1 |
| 62 } | 63 } |
| 63 | 64 |
| 64 do_gyp() { | 65 do_gyp() { |
| 65 local gyp_defines="$(make_gyp_defines)" | 66 local gyp_defines="$(make_gyp_defines)" |
| 66 echo "Running gyp with GYP_DEFINES=$gyp_defines ..." | 67 echo "Running gyp with GYP_DEFINES=$gyp_defines ..." |
| 67 GYP_DEFINES="$gyp_defines" build/gyp_chromium mojo/mojo.gyp | 68 GYP_DEFINES="$gyp_defines" build/gyp_chromium mojo/mojo.gyp |
| 68 } | 69 } |
| 69 | 70 |
| 70 # Valid values: Debug, Release, or Debug_and_Release. | 71 # Valid values: Debug, Release, or Debug_and_Release. |
| 71 BUILD_TEST_TYPE=Debug_and_Release | 72 BUILD_TEST_TYPE=Debug_and_Release |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 ;; | 168 ;; |
| 168 --static) | 169 --static) |
| 169 COMPONENT=static | 170 COMPONENT=static |
| 170 ;; | 171 ;; |
| 171 *) | 172 *) |
| 172 echo "Unknown command \"${arg}\". Try \"$(basename "$0") help\"." | 173 echo "Unknown command \"${arg}\". Try \"$(basename "$0") help\"." |
| 173 exit 1 | 174 exit 1 |
| 174 ;; | 175 ;; |
| 175 esac | 176 esac |
| 176 done | 177 done |
| OLD | NEW |