Skip to content

Commit

Permalink
Merge branch 'bug1862' of git://github.com/jollyroger/buildbot
Browse files Browse the repository at this point in the history
* 'bug1862' of git://github.com/jollyroger/buildbot:
  Add Debian fix for running test from root/fakeroot (fix-test-root.patch)
  Add Debian fix for texinfo manual (fix-info-dir.patch)

Fixes #1862
  • Loading branch information
djmitche committed Mar 14, 2011
2 parents 1fd2bd6 + 533ffec commit e3582ec
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 7 additions & 0 deletions master/docs/buildbot.texinfo
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,13 @@ provided the copyright notice and this notice are preserved.

@end copying

@ifinfo
@dircategory Software development
@direntry
* Buildbot: (buildbot). A system to automate the compile/test cycle
@end direntry
@end ifinfo

@titlepage
@title BuildBot
@subtitle @value{VERSION}
Expand Down
4 changes: 0 additions & 4 deletions master/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,6 @@ def _run(self, test_loc):
# Mimick the trial script by adding the path as the last arg
sys.argv.append(test_loc)

# No superuser should execute tests
if hasattr(os, "getuid") and os.getuid() == 0:
raise SystemExit('Do not test as a superuser! Exiting ...')

# Add the current dir to path and pull it all together
sys.path.insert(0, os.path.curdir)
sys.path[:] = map(os.path.abspath, sys.path)
Expand Down

0 comments on commit e3582ec

Please sign in to comment.