summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-07-30 06:53:25 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-07-30 06:53:25 +0200
commit7e00faaca0207eb6ee6cf109c09cc489d8fb7e3f (patch)
tree6cb236ccadeb001b70d64d6fd7f52dad3c0b3623 /tests
parent3811f48ced97ec0fe56b48f0d9d906a43037e2fd (diff)
Add propper copyright headers to all source files
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'tests')
-rw-r--r--tests/add_by_path.c5
-rw-r--r--tests/canonicalize_name.c5
-rw-r--r--tests/crc32.c5
-rw-r--r--tests/fstree_from_file.c5
-rw-r--r--tests/fstree_init.c5
-rw-r--r--tests/fstree_sort.c5
-rw-r--r--tests/fstree_xattr.c5
-rw-r--r--tests/gen_inode_table.c5
-rw-r--r--tests/get_path.c5
-rw-r--r--tests/mknode_dir.c5
-rw-r--r--tests/mknode_reg.c5
-rw-r--r--tests/mknode_simple.c5
-rw-r--r--tests/mknode_slink.c5
-rw-r--r--tests/str_table.c5
-rw-r--r--tests/tar_gnu.c5
-rw-r--r--tests/tar_pax.c5
-rw-r--r--tests/tar_sparse_gnu.c5
-rw-r--r--tests/tar_sparse_gnu1.c5
-rw-r--r--tests/tar_sparse_gnu2.c5
-rw-r--r--tests/tar_ustar.c5
-rw-r--r--tests/tar_xattr_bsd.c5
-rw-r--r--tests/tar_xattr_schily.c5
22 files changed, 110 insertions, 0 deletions
diff --git a/tests/add_by_path.c b/tests/add_by_path.c
index e9e2546..610cb79 100644
--- a/tests/add_by_path.c
+++ b/tests/add_by_path.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * add_by_path.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include "fstree.h"
diff --git a/tests/canonicalize_name.c b/tests/canonicalize_name.c
index 08c6d84..64ca766 100644
--- a/tests/canonicalize_name.c
+++ b/tests/canonicalize_name.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * canonicalize_name.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include "util.h"
diff --git a/tests/crc32.c b/tests/crc32.c
index 290f5cf..669c6a4 100644
--- a/tests/crc32.c
+++ b/tests/crc32.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * crc32.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include "util.h"
diff --git a/tests/fstree_from_file.c b/tests/fstree_from_file.c
index 86c1824..1b9fd76 100644
--- a/tests/fstree_from_file.c
+++ b/tests/fstree_from_file.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * fstree_from_file.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include "fstree.h"
diff --git a/tests/fstree_init.c b/tests/fstree_init.c
index a9428e4..1a56256 100644
--- a/tests/fstree_init.c
+++ b/tests/fstree_init.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * fstree_init.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include "fstree.h"
diff --git a/tests/fstree_sort.c b/tests/fstree_sort.c
index 28aa74e..c90f4b0 100644
--- a/tests/fstree_sort.c
+++ b/tests/fstree_sort.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * fstree_sort.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include "fstree.h"
diff --git a/tests/fstree_xattr.c b/tests/fstree_xattr.c
index fabc9b4..0a5b487 100644
--- a/tests/fstree_xattr.c
+++ b/tests/fstree_xattr.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * fstree_xattr.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include "fstree.h"
diff --git a/tests/gen_inode_table.c b/tests/gen_inode_table.c
index f1e1f16..7a93efc 100644
--- a/tests/gen_inode_table.c
+++ b/tests/gen_inode_table.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * gen_inode_table.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include "fstree.h"
diff --git a/tests/get_path.c b/tests/get_path.c
index 5118876..7ce6aeb 100644
--- a/tests/get_path.c
+++ b/tests/get_path.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * get_path.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include "fstree.h"
diff --git a/tests/mknode_dir.c b/tests/mknode_dir.c
index a14f3fe..d4e7c01 100644
--- a/tests/mknode_dir.c
+++ b/tests/mknode_dir.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * mknode_dir.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include "fstree.h"
diff --git a/tests/mknode_reg.c b/tests/mknode_reg.c
index 7b9f961..7d8e934 100644
--- a/tests/mknode_reg.c
+++ b/tests/mknode_reg.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * mknode_reg.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include "fstree.h"
diff --git a/tests/mknode_simple.c b/tests/mknode_simple.c
index 1cac860..956c5fe 100644
--- a/tests/mknode_simple.c
+++ b/tests/mknode_simple.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * mknode_simple.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include "fstree.h"
diff --git a/tests/mknode_slink.c b/tests/mknode_slink.c
index d28f929..2383717 100644
--- a/tests/mknode_slink.c
+++ b/tests/mknode_slink.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * mknode_slink.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include "fstree.h"
diff --git a/tests/str_table.c b/tests/str_table.c
index b9da577..8b30b35 100644
--- a/tests/str_table.c
+++ b/tests/str_table.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * str_table.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include <stdlib.h>
diff --git a/tests/tar_gnu.c b/tests/tar_gnu.c
index 4f78da7..4bff6ff 100644
--- a/tests/tar_gnu.c
+++ b/tests/tar_gnu.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * tar_gnu.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include "util.h"
diff --git a/tests/tar_pax.c b/tests/tar_pax.c
index 9ca12ff..866e6eb 100644
--- a/tests/tar_pax.c
+++ b/tests/tar_pax.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * tar_pax.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include "util.h"
diff --git a/tests/tar_sparse_gnu.c b/tests/tar_sparse_gnu.c
index 2aff2af..7cd6132 100644
--- a/tests/tar_sparse_gnu.c
+++ b/tests/tar_sparse_gnu.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * tar_sparse_gnu.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include "util.h"
diff --git a/tests/tar_sparse_gnu1.c b/tests/tar_sparse_gnu1.c
index b92427e..366b0f4 100644
--- a/tests/tar_sparse_gnu1.c
+++ b/tests/tar_sparse_gnu1.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * tar_sparse_gnu1.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include "util.h"
diff --git a/tests/tar_sparse_gnu2.c b/tests/tar_sparse_gnu2.c
index 14c2b07..cfc7eb3 100644
--- a/tests/tar_sparse_gnu2.c
+++ b/tests/tar_sparse_gnu2.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * tar_sparse_gnu2.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include "util.h"
diff --git a/tests/tar_ustar.c b/tests/tar_ustar.c
index 695665f..2a59ac3 100644
--- a/tests/tar_ustar.c
+++ b/tests/tar_ustar.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * tar_ustar.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include "util.h"
diff --git a/tests/tar_xattr_bsd.c b/tests/tar_xattr_bsd.c
index b2a1290..2e9479c 100644
--- a/tests/tar_xattr_bsd.c
+++ b/tests/tar_xattr_bsd.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * tar_xattr_bsd.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include "util.h"
diff --git a/tests/tar_xattr_schily.c b/tests/tar_xattr_schily.c
index 9030a45..5f09110 100644
--- a/tests/tar_xattr_schily.c
+++ b/tests/tar_xattr_schily.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * tar_xattr_schily.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include "util.h"