Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(424)

Side by Side Diff: ui/file_manager/zip_archiver/unpacker-test/run_cpp_tests.sh

Issue 2822673002: Change the copyright from Chromium OS to Chromium. (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 #!/bin/bash -e 1 #!/bin/bash -e
2 2
3 # Copyright 2014 The Chromium OS Authors. All rights reserved. 3 # Copyright 2014 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 6
7 ncpus=$(getconf _NPROCESSORS_ONLN) 7 ncpus=$(getconf _NPROCESSORS_ONLN)
8 8
9 cd cpp 9 cd cpp
10 10
11 # Run Debug tests. 11 # Run Debug tests.
12 echo "" 12 echo ""
13 echo "=============================================" 13 echo "============================================="
14 echo "=============== Debug tests =================" 14 echo "=============== Debug tests ================="
15 echo "=============================================" 15 echo "============================================="
16 echo "" 16 echo ""
17 make -j${ncpus} debug_tests_run || { exit 1; } 17 make -j${ncpus} debug_tests_run || { exit 1; }
18 18
19 # Run Release tests. 19 # Run Release tests.
20 echo "=============================================" 20 echo "============================================="
21 echo "============== Release tests ================" 21 echo "============== Release tests ================"
22 echo "=============================================" 22 echo "============================================="
23 echo "" 23 echo ""
24 make -j${ncpus} tests_run 24 make -j${ncpus} tests_run
OLDNEW
« no previous file with comments | « ui/file_manager/zip_archiver/unpacker-test/karma.conf.js ('k') | ui/file_manager/zip_archiver/unpacker-test/run_js_tests.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698