Skip to content

Commit

Permalink
20216.13 updates
Browse files Browse the repository at this point in the history
  • Loading branch information
HubTou authored Jun 13, 2021
1 parent b408ea5 commit e9bc613
Show file tree
Hide file tree
Showing 6 changed files with 52 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,3 +129,4 @@ Full operating system kernels & device drivers:
### Deities level transcending projects
Making your own hardware platform and all the software to run it.
* Although not Unix related, :mage_man: [The Woz](https://en.wikipedia.org/wiki/Steve_Wozniak) springs to mind here and his excellent autobiography, [iWoz](https://en.wikipedia.org/wiki/IWoz), is highly recommended for a good glimpse into a true [hacker](http://www.catb.org/jargon/html/H/hacker.html)'s mind.

1 change: 1 addition & 0 deletions _template/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,4 @@ This utility is available under the [3-clause BSD license](https://opensource.or
## BUGS

## SECURITY CONSIDERATIONS

2 changes: 1 addition & 1 deletion _template/tests/COMMAND.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
<test-suite program="COMMAND" processor="b2bt" ID="@(#) $Id: COMMAND.xml - back to back test suite for COMMAND v1.0.0 (MONTH DAY, YEAR) by YOU $">
<test-suite program="COMMAND" processor="b2bt MINIMUM_VERSION" ID="@(#) $Id: COMMAND.xml - back to back test suite for COMMAND v1.0.0 (MONTH DAY, YEAR) by YOU $">

<test-case name="Usual call #1">
<cmd>
Expand Down
6 changes: 5 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = PNU
description = The PNU Project / PyNIX
long_description = file: README.md
long_description_content_type = text/markdown
version = 2021.6.8
version = 2021.6.13
license = BSD 3-Clause License
license_files = License
author = Hubert Tournier
Expand Down Expand Up @@ -34,11 +34,15 @@ install_requires =
pnu-b2bt
pnu-basename
pnu-echobox
pnu-prep

[options.data_files]
share/PNU =
tests/basename.xml
tests/dirname.xml
tests/echo.xml
tests/false.xml
tests/prep.xml
tests/true.xml
tests/yes.xml

22 changes: 22 additions & 0 deletions tests/false.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?xml version="1.0"?>
<test-suite program="false" processor="b2bt" ID="@(#) $Id: false.xml - back to back test suite for false v1.0.0 (June 12, 2021) by Hubert Tournier $">

<test-case name="Normal call">
<cmd>
false
</cmd>
</test-case>

<test-case name="With one extra argument">
<cmd>
false arg
</cmd>
</test-case>

<test-case name="Illegal option">
<cmd>
false -i
</cmd>
</test-case>

</test-suite>
22 changes: 22 additions & 0 deletions tests/true.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?xml version="1.0"?>
<test-suite program="true" processor="b2bt" ID="@(#) $Id: true.xml - back to back test suite for true v1.0.0 (June 12, 2021) by Hubert Tournier $">

<test-case name="Normal call">
<cmd>
true
</cmd>
</test-case>

<test-case name="With one extra argument">
<cmd>
true arg
</cmd>
</test-case>

<test-case name="Illegal option">
<cmd>
true -i
</cmd>
</test-case>

</test-suite>

0 comments on commit e9bc613

Please sign in to comment.