Skip to content
Snippets Groups Projects
Commit cc935295 authored by Simon Glass's avatar Simon Glass
Browse files

buildman: Don't use the local settings when running tests


We should create a test setting file when running testes, not use whatever
happens to be on the local machine.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
parent 7024ab63
No related branches found
No related tags found
No related merge requests found
......@@ -24,6 +24,16 @@ import commit
import terminal
import toolchain
settings_data = '''
# Buildman settings file
[toolchain]
main: /usr/sbin
[toolchain-alias]
x86: i386 x86_64
'''
errors = [
'''main.c: In function 'main_loop':
main.c:260:6: warning: unused variable 'joe' [-Wunused-variable]
......@@ -113,8 +123,11 @@ class TestBuild(unittest.TestCase):
self.boards.AddBoard(board.Board(*brd))
self.boards.SelectBoards([])
# Add some test settings
bsettings.Setup(None)
bsettings.AddFile(settings_data)
# Set up the toolchains
bsettings.Setup()
self.toolchains = toolchain.Toolchains()
self.toolchains.Add('arm-linux-gcc', test=False)
self.toolchains.Add('sparc-linux-gcc', test=False)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment