Skip to content

Commit eb8f748

Browse files
committed
syncing up with jenkins scripts set
1 parent 7b278dd commit eb8f748

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

vcast_utils.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ def __get_script_filename():
3838

3939

4040
def checkVectorCASTVersion(minimumVersion, quiet = False):
41+
4142
tool_version = os.path.join(os.environ['VECTORCAST_DIR'], "DATA", "tool_version.txt")
4243
with open(tool_version,"r") as fd:
4344
ver = fd.read()
@@ -75,6 +76,19 @@ def fmt_percent(num, dom):
7576
else:
7677
str_num = "0%"
7778
return str_num
79+
80+
def printVectorLogo():
81+
print( " #### ")
82+
print( " ######## ")
83+
print( " ########### ")
84+
print( " @@@ @@@ @@@@@@@@ @@@@@@@ @@@@@@@@@@ @@@@@@@@ @@@@@@@@ ########### ")
85+
print( " @@@@ @@@ @@@ @@@ @@@ @@@@ @@@@ @@@ @@@ ########### ")
86+
print( " @@@@@@ @@@@@@ @@@ @@@ @@@ @@@ @@@@@@@@@ ########## ")
87+
print( " @@@@ @@@ @@@ @@@ @@@@ @@@@ @@@@@@@@ ########### ")
88+
print( " @@ @@@@@@@@ @@@@@@@ @@@ @@@@@@@@ @@@ @@@@ ########### ")
89+
print( " ########### ")
90+
print( " ######## ")
91+
print( " #### ")
7892

7993
if __name__ == '__main__':
8094

0 commit comments

Comments
 (0)