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

Unified Diff: src/trusted/validator/x86/testing/enuminsts/build.scons

Issue 636933004: stop building/testing old x86 validator. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: rebase master Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/trusted/validator/x86/testing/enuminsts/Makefile ('k') | src/trusted/validator/x86/validate_x86.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/trusted/validator/x86/testing/enuminsts/build.scons
diff --git a/src/trusted/validator/x86/testing/enuminsts/build.scons b/src/trusted/validator/x86/testing/enuminsts/build.scons
deleted file mode 100644
index 7311a688f621b112a9f17ecaa25b78c929f09ddb..0000000000000000000000000000000000000000
--- a/src/trusted/validator/x86/testing/enuminsts/build.scons
+++ /dev/null
@@ -1,52 +0,0 @@
-# -*- python -*-
-# Copyright (c) 2012 The Native Client Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import os
-import sys
-Import('env')
-
-# vdiff is x86 only
-if not env.Bit('target_x86'): Return()
-
-# ------------------------------------------------------
-# General adjustments to the environment for builds.
-
-# Create environment for command-line tools and testing, rather than
-# part of the TCB. Then define compile-time flag that communicates
-# that we are compiling in the test environment (rather than for the TCB).
-test_env = env.Clone()
-test_env.Append(CPPDEFINES=['NACL_TRUSTED_BUT_NOT_TCB', 'NACL_RAGEL_DECODER'])
-
-vdiff = test_env.ComponentProgram(
- 'vdiff',
- ['vdiff.c', 'nacl_tester.c', 'ragel_tester.c', 'str_utils.c', 'text2hex.c'],
- EXTRA_LIBS=[test_env.NaClTargetArchSuffix('ncdis_util'),
- test_env.NaClTargetArchSuffix('ncvalidate'),
- test_env.NaClTargetArchSuffix('ncval_reg_sfi'),
- test_env.NaClTargetArchSuffix('nc_decoder'),
- test_env.NaClTargetArchSuffix('nc_opcode_modeling_verbose'),
- test_env.NaClTargetArchSuffix('nc_opcode_modeling'),
- test_env.NaClTargetArchSuffix('ncdis_decode_tables'),
- test_env.NaClTargetArchSuffix('ncval_base_verbose'),
- test_env.NaClTargetArchSuffix('ncval_base'),
- 'validators',
- env.NaClTargetArchSuffix('ncvalidate'),
- env.NaClTargetArchSuffix('dfa_validate_caller'),
- 'platform', 'nrd_xfer', 'gio', 'utils',
- ])
-
-# NOTE: can't use stdout_golden here because the test runs too long,
-# so the bots kill it because with this option there is no output.
-if env.Bit('target_x86_64'):
- node = env.CommandTest(
- 'vdiff.out', command=[vdiff, '--easydiff'],
- capture_output=0, time_warning=2500, time_error=5000)
- env.AddNodeToTestSuite(node, ['validator_diff_tests'], 'run_vdiff_test')
-
-if env.Bit('target_x86_32'):
- # No golden output for 32-bit until more diffs are fixed
- node = env.CommandTest('vdiff.out', command=[vdiff],
- time_warning=2500, time_error=5000)
- env.AddNodeToTestSuite(node, ['validator_diff_tests'], 'run_vdiff_test')
« no previous file with comments | « src/trusted/validator/x86/testing/enuminsts/Makefile ('k') | src/trusted/validator/x86/validate_x86.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698