1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
/* SPDX-License-Identifier: GPL-3.0-or-later */
/*
* epoch.c
*
* Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
*/
#include "config.h"
#include "internal.h"
#include "../test.h"
#if defined(_WIN32) || defined(__WINDOWS__)
static void setenv(const char *key, const char *value, int overwrite)
{
char buffer[128];
(void)overwrite;
snprintf(buffer, sizeof(buffer) - 1, "%s=%s", key, value);
buffer[sizeof(buffer) - 1] = '\0';
_putenv(buffer);
}
static void unsetenv(const char *key)
{
setenv(key, "", 0);
}
#endif
int main(int argc, char **argv)
{
sqfs_u32 ts;
(void)argc; (void)argv;
unsetenv("SOURCE_DATE_EPOCH");
ts = get_source_date_epoch();
TEST_EQUAL_UI(ts, 0);
setenv("SOURCE_DATE_EPOCH", "1337", 1);
ts = get_source_date_epoch();
TEST_EQUAL_UI(ts, 1337);
setenv("SOURCE_DATE_EPOCH", "0xCAFE", 1);
ts = get_source_date_epoch();
TEST_EQUAL_UI(ts, 0);
setenv("SOURCE_DATE_EPOCH", "foobar", 1);
ts = get_source_date_epoch();
TEST_EQUAL_UI(ts, 0);
setenv("SOURCE_DATE_EPOCH", "-12", 1);
ts = get_source_date_epoch();
TEST_EQUAL_UI(ts, 0);
setenv("SOURCE_DATE_EPOCH", "12", 1);
ts = get_source_date_epoch();
TEST_EQUAL_UI(ts, 12);
setenv("SOURCE_DATE_EPOCH", "4294967295", 1);
ts = get_source_date_epoch();
TEST_EQUAL_UI(ts, 0xFFFFFFFF);
setenv("SOURCE_DATE_EPOCH", "4294967296", 1);
ts = get_source_date_epoch();
TEST_EQUAL_UI(ts, 0);
return EXIT_SUCCESS;
}
|