A better test program for core files.

This commit is contained in:
Ernie Pasveer
2025-09-07 12:43:30 -05:00
parent a552b7d63a
commit be14aa11af
6 changed files with 70 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
#include "function1.h"
#include <iostream>
#include <unistd.h>
#include <signal.h>
void function1 (const std::string& text) {
int i = 42;
sleep(2); // Simulate doing work.
std::cout << text << i << std::endl;
//raise(SIGSEGV);
int* x = 0;
*x = 2112;
sleep(3); // Simulate doing work.
}