Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / native_client / tests / pagesize / nacl.scons
1 # -*- python -*-
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
4 # found in the LICENSE file.
5
6 Import('env')
7
8 pagesize_test_nexe = env.ComponentProgram(
9   'pagesize_test',
10   'pagesize_test.c',
11   EXTRA_LIBS=['${PTHREAD_LIBS}', '${RANDOM_LIBS}', '${NONIRT_LIBS}'])
12
13 node = env.CommandSelLdrTestNacl(
14   'pagesize_test.out',
15   pagesize_test_nexe)
16
17 env.AddNodeToTestSuite(node, ['small_tests'], 'run_pagesize_test')