Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor/analyze mode no proctree #4120

Draft
wants to merge 12 commits into
base: main
Choose a base branch
from
2 changes: 2 additions & 0 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,8 @@ jobs:
fi
- name: "Instrumentation Test"
run: ./tests/e2e-inst-test.sh
- name: "Analyze Mode Instrumentation Test"
run: ./tests/e2e-analyze-inst-test.sh
- name: "Network Test"
run: ./tests/e2e-net-test.sh
- name: "Kernel Test"
Expand Down
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -685,12 +685,16 @@ clean-e2e-net-signatures:
# e2e instrumentation signatures

E2E_INST_DIR ?= tests/e2e-inst-signatures
E2E_INST_FILES_TO_EXCLUDE ?= ""
# Loop through each filename in the environment variable and construct the exclusion part of the find command
IGNORE_FILES := $(foreach file,$(shell echo $(E2E_INST_FILES_TO_EXCLUDE)),! -name '$(file)')
E2E_INST_SRC := $(shell find $(E2E_INST_DIR) \
-type f \
-name '*.go' \
! -name '*_test.go' \
! -path '$(E2E_INST_DIR)/scripts/*' \
! -path '$(E2E_INST_DIR)/datasourcetest/*' \
$(IGNORE_FILES) \
)

.PHONY: e2e-inst-signatures
Expand Down
246 changes: 0 additions & 246 deletions cmd/tracee/cmd/analyze.go

This file was deleted.

Loading
Loading