moved tests into test directory

This commit is contained in:
2024-04-24 14:58:35 -06:00
parent e7021e127c
commit 057f5571d6
10 changed files with 134 additions and 82 deletions

13
tests/posix/false.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/sh
# Copyright (c) 2024 DTB <trinity@trinity.moe>
# Copyright (c) 2024 Emma Tebibyte <emma@tebibyte.media>
# SPDX-License-Identifier: FSFAP
#
# Copying and distribution of this file, with or without modification, are
# permitted in any medium without royalty provided the copyright notice and this
# notice are preserved. This file is offered as-is, without any warranty.
alias false="$BIN/false"
! false
! false -h

13
tests/posix/true.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/sh
# Copyright (c) 2024 DTB <trinity@trinity.moe>
# Copyright (c) 2024 Emma Tebibyte <emma@tebibyte.media>
# SPDX-License-Identifier: FSFAP
#
# Copying and distribution of this file, with or without modification, are
# permitted in any medium without royalty provided the copyright notice and this
# notice are preserved. This file is offered as-is, without any warranty.
alias true="$BIN/true"
true
true -h