| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # Copyright 2009 The Native Client Authors. All rights reserved. | 2 # Copyright 2009 The Native Client Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can | 3 # Use of this source code is governed by a BSD-style license that can |
| 4 # be found in the LICENSE file. | 4 # be found in the LICENSE file. |
| 5 | 5 |
| 6 Import('env') | 6 Import('env') |
| 7 | 7 |
| 8 env.ComponentProgram('bundle_size.nexe', | 8 nexe = env.ComponentProgram('bundle_size', |
| 9 'bundle_size.c', | 9 'bundle_size.c', |
| 10 EXTRA_LIBS=['pthread']) | 10 EXTRA_LIBS=['pthread']) |
| 11 node = env.CommandSelLdrTestNacl( | 11 node = env.CommandSelLdrTestNacl('bundle_size.out', nexe) |
| 12 'bundle_size.out', | |
| 13 command=[env.File('bundle_size.nexe')]) | |
| 14 env.AddNodeToTestSuite(node, ['small_tests'], 'run_bundle_size') | 12 env.AddNodeToTestSuite(node, ['small_tests'], 'run_bundle_size') |
| OLD | NEW |