summaryrefslogtreecommitdiffstats
path: root/tests/common
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 21:41:43 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 21:41:43 +0000
commit92cccad89d1c12b39165d5f0ed7ccd2d44965a1a (patch)
treef59a2764cd8c50959050a428bd8fc935138df750 /tests/common
parentInitial commit. (diff)
downloadlibtpms-92cccad89d1c12b39165d5f0ed7ccd2d44965a1a.tar.xz
libtpms-92cccad89d1c12b39165d5f0ed7ccd2d44965a1a.zip
Adding upstream version 0.9.2.upstream/0.9.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/common')
-rw-r--r--tests/common13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/common b/tests/common
new file mode 100644
index 0000000..353b12c
--- /dev/null
+++ b/tests/common
@@ -0,0 +1,13 @@
+
+# Get the size of a file in bytes
+#
+# @1: filename
+function get_filesize()
+{
+ if [[ "$(uname -s)" =~ (Linux|CYGWIN_NT-) ]]; then
+ stat -c%s $1
+ else
+ # OpenBSD
+ stat -f%z $1
+ fi
+}