OLD | NEW |
1 # -*- python -*- | 1 # -*- python -*- |
2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. | 2 # Copyright (c) 2012 The Native Client 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 | 6 |
7 import os | 7 import os |
8 import sys | 8 import sys |
9 Import('env') | 9 Import('env') |
10 | 10 |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 'validation_disable_nontemporals_test', | 55 'validation_disable_nontemporals_test', |
56 ['validation_disable_nontemporals_test.cc'], | 56 ['validation_disable_nontemporals_test.cc'], |
57 EXTRA_LIBS=['validators', 'nrd_xfer']) | 57 EXTRA_LIBS=['validators', 'nrd_xfer']) |
58 | 58 |
59 node = gtest_env.CommandTest( | 59 node = gtest_env.CommandTest( |
60 'validation_disable_nontemporals_test.out', | 60 'validation_disable_nontemporals_test.out', |
61 command=[validation_disable_nontemporals_test_exe]) | 61 command=[validation_disable_nontemporals_test_exe]) |
62 | 62 |
63 env.AddNodeToTestSuite(node, ['small_tests', 'validator_tests'], | 63 env.AddNodeToTestSuite(node, ['small_tests', 'validator_tests'], |
64 'run_disable_nontemporals_test') | 64 'run_disable_nontemporals_test') |
| 65 |
| 66 if env.Bit('build_x86_64'): |
| 67 validation_rewrite_test_exe= gtest_env.ComponentProgram( |
| 68 'validation_rewrite_64_test', |
| 69 ['validation_rewrite_64_test.cc', 'validation_rewrite_64_test_data.S'], |
| 70 EXTRA_LIBS=['validators', 'nrd_xfer']) |
| 71 |
| 72 node = gtest_env.CommandTest( |
| 73 'validation_rewrite_64_test.out', |
| 74 command=[validation_rewrite_test_exe]) |
| 75 |
| 76 env.AddNodeToTestSuite(node, ['small_tests', 'validator_tests'], |
| 77 'run_validation_rewrite_64_test') |
| 78 |
| 79 if env.Bit('build_x86_32'): |
| 80 validation_rewrite_test_exe= gtest_env.ComponentProgram( |
| 81 'validation_rewrite_32_test', |
| 82 ['validation_rewrite_32_test.cc', 'validation_rewrite_32_test_data.S'], |
| 83 EXTRA_LIBS=['validators', 'nrd_xfer']) |
| 84 |
| 85 node = gtest_env.CommandTest( |
| 86 'validation_rewrite_32_test.out', |
| 87 command=[validation_rewrite_test_exe]) |
| 88 |
| 89 env.AddNodeToTestSuite(node, ['small_tests', 'validator_tests'], |
| 90 'run_validation_rewrite_32_test') |
OLD | NEW |