Skip to content

Commit

Permalink
Add temp test code
Browse files Browse the repository at this point in the history
  • Loading branch information
bjk7119 committed Jul 15, 2022
1 parent 73884c5 commit 904d813
Show file tree
Hide file tree
Showing 11 changed files with 151 additions and 0 deletions.
12 changes: 12 additions & 0 deletions test_more/hoho/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/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/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/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/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()
31 changes: 31 additions & 0 deletions test_more/oss-pkg-info.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
Open Source Software Package:
- name: glibc
version: 2.3
source: https://github.com/fsfe/glibc
license:
- GPL-3.0
- LGPL-2.1
file :
- a.c
- b.c
- name : dbus
version : 1.3
source : https://github.com/fsfe/dbus
license : GPL-2.0
file : src/*
copyright : |
Copyright (c) 2020 Test
Copyright (c) 2020 Sample
- name : reuse-tool
source : https://github.com/fsfe/reuse
homepage : http://google.com
license : MIT
copyright: Copyright (c) 2020 Test
- name : build-tool
source : http://gihub.com/bazel
license : Apache-2.0
file:
- hoho
- tata/
- src
exclude : True
12 changes: 12 additions & 0 deletions test_more/tata/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/tata/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/tata/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/tata/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/tata/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 904d813

Please sign in to comment.