Skip to content

Commit

Permalink
fix(framework): update nix build call to use irq flags correctly
Browse files Browse the repository at this point in the history
Signed-off-by: Diogo Costa <[email protected]>
  • Loading branch information
Diogo21Costa committed Jun 1, 2024
1 parent 51a8009 commit 1c768fe
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions framework/test_framework.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,9 +280,10 @@ def move_results_to_output():
BUILD_CMD += " --argstr log_level " + str(args.log_level)

if args.gicv:
BUILD_CMD += " --argstr irq_controller " + args.gicv
BUILD_CMD += " --argstr GIC_VERSION " + args.gicv
else:
BUILD_CMD += " --argstr irq_controller " + args.irqc + "\\ " + args.ipic
BUILD_CMD += " --argstr IRQC " + args.irqc + "\\ "
BUILD_CMD += "--argstr IPIC " + args.ipic

print("Building with command: " + BUILD_CMD)
res = os.system(BUILD_CMD)
Expand Down

0 comments on commit 1c768fe

Please sign in to comment.