#define exe "exe"
#endif
+#ifdef RTE_LIBRTE_PDUMP
#include <pthread.h>
extern void *send_pkts(void *empty);
extern uint16_t flag_for_send_pkts;
+#endif
/*
* launches a second copy of the test process using the given argv parameters,
char *argv_cpy[numargs + 1];
int i, fd, status;
char path[32];
+#ifdef RTE_LIBRTE_PDUMP
pthread_t thread;
+#endif
pid_t pid = fork();
if (pid < 0)
rte_panic("Cannot exec\n");
}
/* parent process does a wait */
+#ifdef RTE_LIBRTE_PDUMP
if ((strcmp(env_value, "run_pdump_server_tests") == 0))
pthread_create(&thread, NULL, &send_pkts, NULL);
+#endif
while (wait(&status) != pid)
;
+#ifdef RTE_LIBRTE_PDUMP
if ((strcmp(env_value, "run_pdump_server_tests") == 0)) {
flag_for_send_pkts = 0;
pthread_join(thread, NULL);
}
+#endif
return status;
}
#endif
#include "test.h"
+#ifdef RTE_LIBRTE_PDUMP
#include "test_pdump.h"
+#endif
#define RTE_LOGTYPE_APP RTE_LOGTYPE_USER1
int (*action_fn)(void);
} actions[] = {
{ "run_secondary_instances", test_mp_secondary },
+#ifdef RTE_LIBRTE_PDUMP
{ "run_pdump_server_tests", test_pdump },
+#endif
{ "test_missing_c_flag", no_action },
{ "test_master_lcore_flag", no_action },
{ "test_invalid_n_flag", no_action },