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

Side by Side Diff: ports/eigen3/build.sh

Issue 1749283002: Update bug URLs from naclports to webports (Closed) Base URL: https://chromium.googlesource.com/webports.git@master
Patch Set: . Created 3 years, 7 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
« no previous file with comments | « ports/clipper/pkg_info ('k') | ports/gdb/build.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Native Client Authors. All rights reserved. 1 # Copyright 2015 The Native Client Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 CTEST_EXECUTABLES=" 5 CTEST_EXECUTABLES="
6 basicstuff 6 basicstuff
7 cholesky 7 cholesky
8 determinant 8 determinant
9 geo_transformations 9 geo_transformations
10 inverse 10 inverse
11 " 11 "
12 12
13 EXECUTABLES=" 13 EXECUTABLES="
14 test/basicstuff 14 test/basicstuff
15 test/cholesky 15 test/cholesky
16 test/determinant 16 test/determinant
17 test/geo_transformations 17 test/geo_transformations
18 test/inverse 18 test/inverse
19 " 19 "
20 20
21 EXTRA_CMAKE_ARGS="-DEIGEN_BUILD_PKGCONFIG=OFF -DEIGEN_SPLIT_LARGE_TESTS=OFF" 21 EXTRA_CMAKE_ARGS="-DEIGEN_BUILD_PKGCONFIG=OFF -DEIGEN_SPLIT_LARGE_TESTS=OFF"
22 MAKE_TARGETS="$CTEST_EXECUTABLES" 22 MAKE_TARGETS="$CTEST_EXECUTABLES"
23 23
24 # Eigen tests are flakey on the bots: 24 # Eigen tests are flakey on the bots:
25 # https://bugs.chromium.org/p/naclports/issues/detail?id=223 25 # https://bugs.chromium.org/p/webports/issues/detail?id=223
26 # TODO(sbc): re-enable if we can de-flake the tests 26 # TODO(sbc): re-enable if we can de-flake the tests
27 TESTS_DISABLED=1 27 TESTS_DISABLED=1
28 28
29 TestStep() { 29 TestStep() {
30 # Eigen has ~600 tests, we only build a few 30 # Eigen has ~600 tests, we only build a few
31 ChangeDir ${BUILD_DIR} 31 ChangeDir ${BUILD_DIR}
32 if [ ${NACL_ARCH} = "pnacl" ]; then 32 if [ ${NACL_ARCH} = "pnacl" ]; then
33 return 33 return
34 fi 34 fi
35 for exe in ${CTEST_EXECUTABLES}; do 35 for exe in ${CTEST_EXECUTABLES}; do
36 LogExecute test/$exe.sh 36 LogExecute test/$exe.sh
37 done 37 done
38 } 38 }
OLDNEW
« no previous file with comments | « ports/clipper/pkg_info ('k') | ports/gdb/build.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698