mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-11 01:46:14 +00:00
build: Make grep silent when running make test
-q will prevent grep from writing to stdout and print "root" when make test is running as root. Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
This commit is contained in:
parent
7e9fd56873
commit
6a82b68e36
@ -143,7 +143,7 @@ TESTS = \
|
||||
$(NULL)
|
||||
|
||||
test:
|
||||
@whoami | grep root || ( echo ERROR: not running as root; exit 1 )
|
||||
@whoami | grep -q root || ( echo ERROR: not running as root; exit 1 )
|
||||
@./check_drm_clients
|
||||
@make TESTS="${kernel_tests}" check
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user