summaryrefslogtreecommitdiff
path: root/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
commit67b36e4a2fba4931747cad61979aa92d43002ccc (patch)
tree6baf3e6ca9b18af5398084748129f85b09a75d9a /tools/bugpoint/bugpoint.cpp
parenta497748fb1a982d85ddef50894abb299c5df5ff2 (diff)
downloadllvm-67b36e4a2fba4931747cad61979aa92d43002ccc.tar.gz
llvm-67b36e4a2fba4931747cad61979aa92d43002ccc.tar.bz2
llvm-67b36e4a2fba4931747cad61979aa92d43002ccc.tar.xz
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8503 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/bugpoint/bugpoint.cpp')
-rw-r--r--tools/bugpoint/bugpoint.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/tools/bugpoint/bugpoint.cpp b/tools/bugpoint/bugpoint.cpp
index 4a6ebaf757..25fe1a2524 100644
--- a/tools/bugpoint/bugpoint.cpp
+++ b/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();
}