Tests: implement REUSE with SPDX identifiers
[lttng-ust.git] / tests / benchmark / ptime
index 419f3684d6b5373f5f8b39be3ab1ac1f1389ea88..8a478138f5d990d7978425c1069f212b3cbdee09 100755 (executable)
@@ -1,5 +1,9 @@
 #!/usr/bin/env python
 
+# SPDX-FileCopyrightText: 2023 EfficiOS, Inc
+#
+# SPDX-License-Identifier: LGPL-2.1-only
+
 import sys
 import time
 import os
@@ -16,7 +20,7 @@ def main():
        os.system(cmd)
        t2 = time.time()
 
-       print(t2-t1)
+       print("Wall time: " + str(t2-t1))
 
 if __name__ == "__main__":
        main()
This page took 0.023318 seconds and 4 git commands to generate.