search for: santity

Displaying 6 results from an estimated 6 matches for "santity".

Did you mean: sanity
2007 Apr 13
0
[LLVMdev] [llvm-commits] CVS: llvm/lib/Transforms/Hello/Makefile
...run into this again. It is a long-standing issue. The deal is that libsupport (and many others) are .a files. If one of the .o files in the .a file is used by a plugin, but not by the tool, they will get link errors. There isn't a good solution to this, I'd rather keep libhello as a santity test rather than a test for a complete solution. :) For any specific client, they can do things to link the needed .o files in. For example, we could make opt reference a symbol in slowoperationinformer. I don't think it's important enough to do this though. -Chris -- http://nond...
2007 Apr 13
3
[LLVMdev] [llvm-commits] CVS: llvm/lib/Transforms/Hello/Makefile
On Apr 13, 2007, at 12:28 PM, Chris Lattner wrote: > On Fri, 13 Apr 2007, Devang Patel wrote: >> And this brings back CommandLine Error: Arugment blah defined more >> than once! >> >> And without this, opt -load .../LLVMHello.dylib -hello does not work >> on Darwin because dyld is not able to find SlowerOperationInformer ;) > > I think libhello should drop
2003 Oct 23
3
Shorewall backup configuration patch/hack
Hi, I created a modification (more like a hack) to shorewall that backups a configuration after succesfully (re)starting it. In case a future (re)start fails it will use this backup configuration. (instead of stopping the firewall and generating a massive ammount phonecalls ;) I didn''t pay too much attention to the ramifications of this patch, so let me know if i screwed anything up.
2012 Aug 21
0
[LLVMdev] SelectionDAGISel::CodeGenAndEmitDAG() confusion.
...e was here!"<<std::endl; for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),E = CurDAG->allnodes_end(); I != E; ++I) { std::cout<<"start"<<I->getOperationName(CurDAG)<<std::endl; } //JOE'S EDITS END ...and, for santity checking purposes, I've added similar code at the end... // Free the SelectionDAG state, now that we're finished with it. //JOE'S EDITS START for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),E = CurDAG->allnodes_end(); I != E; ++I) { std::cout&l...
2007 Apr 13
2
[LLVMdev] [llvm-commits] CVS: llvm/lib/Transforms/Hello/Makefile
...; > It is a long-standing issue. The deal is that libsupport (and many > others) are .a files. If one of the .o files in the .a file is used by a > plugin, but not by the tool, they will get link errors. There isn't a > good solution to this, I'd rather keep libhello as a santity test rather > than a test for a complete solution. :) > > For any specific client, they can do things to link the needed .o files > in. For example, we could make opt reference a symbol in > slowoperationinformer. I don't think it's important enough to do this > th...
2009 Oct 30
3
Keeping iptables in sync across multiple machines
...find it easy. 3) Yet another setup I've used in the past was with a svn repo and using a post-commit hook, run some tests followed by clusterssh! to deploy the iptables files and restart services. Finally replaced that with a slack based deployment, since that allowed me to atleast run some santity tesing and rollback if I ended up locking 'core' host. The problem ofcourse was that its not easy to test remote inbound connections this way ( without using a proxy, but then the proxy creates another layer of problems and flakyness ). 4) Physically logging into machines to make polic...