From 2ee98e784b080498983bc907075f1dccf768d2cc Mon Sep 17 00:00:00 2001 From: Ayush Ranjan Date: Wed, 24 Aug 2022 10:53:39 -0700 Subject: [PATCH] Change test targets to use _p9 if p9 is enabled. lisafs is default. So we should not have all targets be generated with _lisafs. Also if nothing is specified, then lisafs should run. Which is not the case right now. PiperOrigin-RevId: 469770835 --- test/runner/defs.bzl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/runner/defs.bzl b/test/runner/defs.bzl index 4b4925135..c3c99bc34 100644 --- a/test/runner/defs.bzl +++ b/test/runner/defs.bzl @@ -84,8 +84,8 @@ def _syscall_test( name += "_overlay" if fuse: name += "_fuse" - if lisafs: - name += "_lisafs" + if not lisafs: + name += "_p9" if network != "none": name += "_" + network + "net"