Skip to content

Commit

Permalink
Add test files
Browse files Browse the repository at this point in the history
  • Loading branch information
soimkim committed Jul 15, 2022
1 parent 904d813 commit 4e8c640
Show file tree
Hide file tree
Showing 6 changed files with 79 additions and 0 deletions.
19 changes: 19 additions & 0 deletions test_more/hoho/oss-pkg-info.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Apache_test:
- version: '2.4'
source name or path:
- a.c
- tata/b.c
license:
- Apache-2.0
download location: http://svn.apache.org/repos/asf/commons
homepage: https://commons.apache.org
Apache Commonstt:
- version: '2.4'
source name or path:
- hoho
- tata/
license:
- Apache-2.0
download location: http://svn.apache.org/repos/asf/commons
homepage: https://commons.apache.org
exclude: True
12 changes: 12 additions & 0 deletions test_more/hoho/temp/temp/lol.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import os
from fosslight_util.set_log import init_log


def main():
output_dir = "tests"
logger, _result_log = init_log(os.path.join(output_dir, "test_add_log.txt"))
logger.warning("TESTING - add mode")


if __name__ == '__main__':
main()
12 changes: 12 additions & 0 deletions test_more/hoho/temp/temp/lol.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import os
from fosslight_util.set_log import init_log


def main():
output_dir = "tests"
logger, _result_log = init_log(os.path.join(output_dir, "test_add_log.txt"))
logger.warning("TESTING - add mode")


if __name__ == '__main__':
main()
12 changes: 12 additions & 0 deletions test_more/hoho/temp/temp/lol.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import os
from fosslight_util.set_log import init_log


def main():
output_dir = "tests"
logger, _result_log = init_log(os.path.join(output_dir, "test_add_log.txt"))
logger.warning("TESTING - add mode")


if __name__ == '__main__':
main()
12 changes: 12 additions & 0 deletions test_more/hoho/temp/temp/lol1.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import os
from fosslight_util.set_log import init_log


def main():
output_dir = "tests"
logger, _result_log = init_log(os.path.join(output_dir, "test_add_log.txt"))
logger.warning("TESTING - add mode")


if __name__ == '__main__':
main()
12 changes: 12 additions & 0 deletions test_more/hoho/temp/temp/lol2.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import os
from fosslight_util.set_log import init_log


def main():
output_dir = "tests"
logger, _result_log = init_log(os.path.join(output_dir, "test_add_log.txt"))
logger.warning("TESTING - add mode")


if __name__ == '__main__':
main()

0 comments on commit 4e8c640

Please sign in to comment.