Advertisement
Guest User

Untitled

a guest
Apr 27th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. #!/bin/bash
  2. # git bisect start
  3. # git bisect good <rev>
  4. # git bisect bad <rev>
  5. # git bisect run [script]
  6.  
  7. cd /home/davide/work/llvm-monorepo/build
  8. ninja opt lli || exit 125 #125 tells git-bisect to skip
  9. ulimit -t 5 && /home/davide/work/llvm-monorepo/build/bin/opt /home/davide/work/llvm-monorepo/build/bin/foo.ll -O3 | /home/davide/work/llvm-monorepo/build/bin/lli
  10. [[ $? == 0 ]] && exit 0
  11. exit 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement