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

Statedump notifier #133

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ health_check
/tests/utils/testapp/gen-ust-events/gen-ust-events
/tests/utils/testapp/gen-ust-nevents-str/gen-ust-nevents-str
/tests/utils/testapp/gen-ust-nevents/gen-ust-nevents
/tests/utils/testapp/gen-ust-statedump-events/gen-ust-statedump-events
/tests/utils/testapp/gen-ust-tracef/gen-ust-tracef
/tests/utils/testapp/gen-syscall-events/gen-syscall-events
/tests/regression/tools/live/live_test
Expand Down
2 changes: 2 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -1143,6 +1143,7 @@ AC_CONFIG_FILES([
tests/regression/ust/clock-override/Makefile
tests/regression/ust/type-declarations/Makefile
tests/regression/ust/rotation-destroy-flush/Makefile
tests/regression/ust/statedump-notifier/Makefile
tests/regression/ust/blocking/Makefile
tests/stress/Makefile
tests/unit/Makefile
Expand All @@ -1156,6 +1157,7 @@ AC_CONFIG_FILES([
tests/utils/testapp/gen-ust-nevents/Makefile
tests/utils/testapp/gen-ust-nevents-str/Makefile
tests/utils/testapp/gen-syscall-events/Makefile
tests/utils/testapp/gen-ust-statedump-events/Makefile
tests/utils/testapp/gen-ust-tracef/Makefile
])

Expand Down
1 change: 1 addition & 0 deletions tests/fast_regression
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ regression/ust/python-logging/test_python_logging
regression/ust/getcpu-override/test_getcpu_override
regression/ust/clock-override/test_clock_override
regression/ust/rotation-destroy-flush/test_rotation_destroy_flush
regression/ust/statedump-notifier/test_statedump_notifier
regression/ust/blocking/test_blocking
regression/ust/test_event_basic
regression/ust/test_event_tracef
Expand Down
3 changes: 2 additions & 1 deletion tests/regression/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ TESTS += ust/before-after/test_before_after \
ust/test_event_tracef \
ust/test_event_perf \
ust/blocking/test_blocking \
ust/multi-lib/test_multi_lib
ust/multi-lib/test_multi_lib \
ust/statedump-notifier/test_statedump_notifier
endif # HAVE_LIBLTTNG_UST_CTL

if PYTHON_BINDING
Expand Down
16 changes: 16 additions & 0 deletions tests/regression/ust/statedump-notifier/Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
noinst_SCRIPTS = test_statedump_notifier
EXTRA_DIST = test_statedump_notifier

all-local:
@if [ x"$(srcdir)" != x"$(builddir)" ]; then \
for script in $(EXTRA_DIST); do \
cp -f $(srcdir)/$$script $(builddir); \
done; \
fi

clean-local:
@if [ x"$(srcdir)" != x"$(builddir)" ]; then \
for script in $(EXTRA_DIST); do \
rm -f $(builddir)/$$script; \
done; \
fi
Loading