-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #76 from adafruit/fix-print-c-program
Avoid printing `True` in C program
- Loading branch information
Showing
2 changed files
with
18 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# SPDX-FileCopyrightText: 2025 Jeff Epler, written for Adafruit Industries | ||
# | ||
# SPDX-License-Identifier: MIT | ||
|
||
import contextlib | ||
import io | ||
|
||
import adafruit_pioasm | ||
|
||
|
||
def test_print_c_program(): | ||
output = io.StringIO() | ||
with contextlib.redirect_stdout(output): | ||
adafruit_pioasm.Program(".side_set 1 opt").print_c_program("mood") | ||
c_program = output.getvalue() | ||
assert "True" not in c_program | ||
assert "sideset_enable = 1" in c_program |