Skip to content

Commit 525e110

Browse files
committed
tbot: deprecate this version of tbot
tbot is completly rewritten by Harald Seiler and this version should be used in future. The new version is hosted on GitHub: https://github.com/Rahix/tbot Documentation is available here: https://rahix.de/tbot Signed-off-by: Heiko Schocher <[email protected]>
1 parent 9fdac20 commit 525e110

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

Diff for: README.md

+11
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,17 @@
1212
- [License](#license)
1313

1414

15+
## New tbot
16+
17+
This is the old version of tbot, which is deprecated. Please
18+
use the new version of tbot found on:
19+
20+
https://github.com/Rahix/tbot
21+
22+
Documentation is available here:
23+
24+
https://rahix.de/tbot
25+
1526
## Short description
1627

1728
- execute testcases on real hw

Diff for: doc/sphinx/source/main.rst

+8-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,14 @@ Especially tasks like compiling source code,
1212
installing the resulting images on the target
1313
and execute testcases on the new bootet images.
1414

15-
Sources are hosted at https://github.com/hsdenx/tbot
15+
This is the old version of tbot, which is deprecated. Please
16+
use the new version of tbot found on:
17+
18+
https://github.com/Rahix/tbot
19+
20+
Documentation is available here:
21+
22+
https://rahix.de/tbot
1623

1724
.. toctree::
1825
:maxdepth: 3

Diff for: src/common/tbot.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,10 @@
5050
os.pardir
5151
)
5252
)
53-
print("**** option w: %s lab: %s cfg: %s log: %s tc: %s v %d a %s" % (args.workdir, args.labfile, args.cfgfile, args.logfile, args.tc, args.verbose, args.arguments))
53+
print("This version of tbot is deprecated")
54+
print("You should use the new version of tbot, found on:")
55+
print("https://github.com/Rahix/tbot")
56+
print("documentation: https://github.com/Rahix/tbot")
5457
tb = tbot(args.workdir, args.labfile, args.cfgfile, args.logfile, args.verbose, args.arguments, args.tc, args.eventsim, args.pwfile)
5558

5659
def signal_term_handler(signal, frame):

0 commit comments

Comments
 (0)