diff options
author | Klement Sekera <ksekera@cisco.com> | 2018-11-08 11:21:39 +0100 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2018-11-29 08:22:10 +0000 |
commit | b8c72a4a8d8bd330ab62dc0c9461cac2b137575b (patch) | |
tree | b2470923ad4e3612282115ef11ec77e1e1b70f3c /test/test_vcl.py | |
parent | 040950a59d53e8802ad31430d67df105939cce4c (diff) |
make test: create virtualenv under /test/
instead of using build-root, use /test/venv directory for virtualenv
similarly, don't pollute build-root with test-built binaries
Change-Id: I1e63c04037eaee718b27b34ef16c9eb0252afa53
Signed-off-by: Klement Sekera <ksekera@cisco.com>
Diffstat (limited to 'test/test_vcl.py')
-rw-r--r-- | test/test_vcl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_vcl.py b/test/test_vcl.py index 6027ba75e7d..2a36304876d 100644 --- a/test/test_vcl.py +++ b/test/test_vcl.py @@ -33,7 +33,7 @@ class VCLTestCase(VppTestCase): """ VCL Test Class """ def __init__(self, methodName): - var = "VPP_TEST_BUILD_DIR" + var = "VPP_BUILD_DIR" self.build_dir = os.getenv(var, None) if self.build_dir is None: raise Exception("Environment variable `%s' not set" % var) |