summaryrefslogtreecommitdiffstats
path: root/llvm/tools/bugpoint/bugpoint.cpp
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2003-09-12 20:42:57 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2003-09-12 20:42:57 +0000
commit46e18d437e93158bb25e46c93f2c62c934042a2b (patch)
tree9faa8b6fe853fad13f8ce1a33b3ead9e74647279 /llvm/tools/bugpoint/bugpoint.cpp
parent099ec07a95f65843f69562a5425c69cb041a6eb0 (diff)
downloadbcm5719-llvm-46e18d437e93158bb25e46c93f2c62c934042a2b.tar.gz
bcm5719-llvm-46e18d437e93158bb25e46c93f2c62c934042a2b.zip
Bugpoint has the ability of generating a plethora of core files, so to
avoid filling up the disk, set the max core file size to 0. llvm-svn: 8503
Diffstat (limited to 'llvm/tools/bugpoint/bugpoint.cpp')
-rw-r--r--llvm/tools/bugpoint/bugpoint.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/llvm/tools/bugpoint/bugpoint.cpp b/llvm/tools/bugpoint/bugpoint.cpp
index 4a6ebaf7573..25fe1a25245 100644
--- a/llvm/tools/bugpoint/bugpoint.cpp
+++ b/llvm/tools/bugpoint/bugpoint.cpp
@@ -9,6 +9,8 @@
#include "BugDriver.h"
#include "llvm/Support/PassNameParser.h"
#include "Support/CommandLine.h"
+#include "Config/unistd.h"
+#include <sys/resource.h>
static cl::list<std::string>
InputFilenames(cl::Positional, cl::OneOrMore,
@@ -27,5 +29,15 @@ int main(int argc, char **argv) {
if (D.addSources(InputFilenames)) return 1;
D.addPasses(PassList.begin(), PassList.end());
+ // Bugpoint has the ability of generating a plethora of core files, so to
+ // avoid filling up the disk, set the max core file size to 0.
+ struct rlimit rlim;
+ rlim.rlim_cur = rlim.rlim_max = 0;
+ int res = setrlimit(RLIMIT_CORE, &rlim);
+ if (res < 0) {
+ // setrlimit() may have failed, but we're not going to let that stop us
+ perror("setrlimit: RLIMIT_CORE");
+ }
+
return D.run();
}
OpenPOWER on IntegriCloud