diff --git a/src/debug_helpers.c b/src/debug_helpers.c index 329fd64..e596ac8 100644 --- a/src/debug_helpers.c +++ b/src/debug_helpers.c @@ -20,7 +20,7 @@ char *string2hex(unsigned char *input, size_t length) { * 1. Add this code to the first “breakpoint”: * log_write(0, LOG_MAIN, "pid: %d", getpid()); int busywait = 0; while (busywait == 0) {} * 2. Compile. - * 3. Run “exim -be […]” to call the lib; see simple_exim_test.sh for details. + * 3. Run “exim -be […]” to call the lib; see test_libexim-encrypt-dlfunc.sh for details. * 4. Read exim pid from log output. Attach to the looping exim process with “gdb -p PID” * 5. Prepare breakpoints, watches, etc. Set busywait to 1 and continue. */ \ No newline at end of file diff --git a/src/meson.build b/src/meson.build index 22e5ac3..86f24f0 100644 --- a/src/meson.build +++ b/src/meson.build @@ -16,6 +16,6 @@ shared_library('exim-encrypt-dlfunc', 'libexim-encrypt-dlfunc.c', dependencies : [ sodium_deps ], install: true) -simple_exim_test = find_program('simple_exim_test.sh') +simple_exim_test = find_program('test_libexim-encrypt-dlfunc.sh') test('simple test', simple_exim_test) diff --git a/src/simple_exim_test.sh b/src/test_libexim-encrypt-dlfunc.sh similarity index 100% rename from src/simple_exim_test.sh rename to src/test_libexim-encrypt-dlfunc.sh