| Index: src/platform/minijail/make_tests.sh
|
| diff --git a/src/platform/minijail/make_tests.sh b/src/platform/minijail/make_tests.sh
|
| new file mode 100755
|
| index 0000000000000000000000000000000000000000..14050187a1140eca1f601270f6f9c8c3b7851d05
|
| --- /dev/null
|
| +++ b/src/platform/minijail/make_tests.sh
|
| @@ -0,0 +1,21 @@
|
| +#!/bin/bash
|
| +
|
| +# Copyright (c) 2009 The Chromium OS Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +# Builds tests.
|
| +
|
| +SCRIPT_DIR=`dirname "$0"`
|
| +SCRIPT_DIR=`readlink -f "$SCRIPT_DIR"`
|
| +
|
| +BUILD_ROOT=${BUILD_ROOT:-${SCRIPT_DIR}/../../../src/build}
|
| +OUT_DIR=${BUILD_ROOT}/x86/tests
|
| +mkdir -p ${OUT_DIR}
|
| +
|
| +pushd $SCRIPT_DIR
|
| +
|
| +scons minijail_unittests
|
| +cp minijail_unittests ${OUT_DIR}
|
| +
|
| +popd
|
|
|