You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by db...@apache.org on 2021/04/18 22:08:24 UTC

[tomee-tck] branch master updated: print uname and ip address

This is an automated email from the ASF dual-hosted git repository.

dblevins pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomee-tck.git


The following commit(s) were added to refs/heads/master by this push:
     new 483cf8f  print uname and ip address
483cf8f is described below

commit 483cf8f4c2bcf7e458768a2dc15e3b42b145cb77
Author: David Blevins <da...@gmail.com>
AuthorDate: Sun Apr 18 15:07:58 2021 -0700

    print uname and ip address
---
 runtests | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/runtests b/runtests
index 044f29e..9ae53d0 100755
--- a/runtests
+++ b/runtests
@@ -327,6 +327,9 @@ echo "" # just an empty line
 # printing the content of the 2 main directories
 egrep '(javaee|jakarta).(ri|cts).home' ~/.m2/settings.xml | perl -pe 's,^ *|<[^>]+>,,g' | while read n; do echo $n; ls -l $n; done
 
+# print system information
+uname -a
+ifconfig | egrep '[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+'
 
 # attempt to limit the memory for Maven
 # export MAVEN_OPTS="-Xmx128m"