diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-03-20 21:48:34 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-20 21:48:34 -0400 |
commit | 0adc86f105204b2475126c36dfc10e678f67df56 (patch) | |
tree | ff50bf401208fcb20e8828fbca10433b460fdeb0 /tools/target_test.py | |
parent | 77a44163fb22139a8269eb216014640aaf7a7fa8 (diff) |
Remove DENO_BUILD_MODE and DENO_BUILD_PATH (#4431)
* Remove DENO_BUILD_MODE and DENO_BUILD_PATH
Also remove outdated docs related to ninja/gn.
* fix
* remove parameter to build_mode()
* remove arg parsing from benchmark.py
Diffstat (limited to 'tools/target_test.py')
-rw-r--r-- | tools/target_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/target_test.py b/tools/target_test.py index 2df09f9eb..192f4183a 100644 --- a/tools/target_test.py +++ b/tools/target_test.py @@ -2,7 +2,7 @@ import os import sys from test_util import DenoTestCase, run_tests -from util import build_mode, executable_suffix, tests_path, run, run_output +from util import executable_suffix, tests_path, run, run_output class TestTarget(DenoTestCase): |