Skip to content

Commit

Permalink
Cherry-pick #21719 to 7.x: Fix stress test package list (#23282)
Browse files Browse the repository at this point in the history
(cherry picked from commit f28d14d)
  • Loading branch information
Steffen Siering committed Jan 4, 2021
1 parent 57bb61f commit 7bd1179
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libbeat/scripts/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export PATH := ./bin:$(PATH)
GOFILES = $(shell find . -type f -name '*.go' 2>/dev/null)
GOFILES_NOVENDOR = $(shell find . -type f -name '*.go' -not -path "*/vendor/*" 2>/dev/null)
GOFILES_ALL = $(GOFILES) $(shell find $(ES_BEATS) -type f -name '*.go' 2>/dev/null)
GOPACKAGES_STRESSTESTS=$(shell find . -name '*.go' 2>/dev/null | xargs awk 'FNR>1 {nextfile} /\+build.*stresstest/ {print FILENAME; nextfile}' | xargs dirname | uniq)
GOPACKAGES_STRESSTESTS=$(shell find . -name '*.go' 2>/dev/null | xargs grep -l '\+build.*stresstest' | xargs -n1 dirname | uniq)
SHELL=bash
ES_HOST?=elasticsearch
ES_PORT?=9200
Expand Down

0 comments on commit 7bd1179

Please sign in to comment.