blob: 71b8a09b35bad69ab639b617644aa1c2975516e5 (
plain) (
blame)
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
|
/* This is the simple test intended to be called by
tst-valgrind-smoke to perform vagrind smoke test.
Copyright (C) 2022 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
<https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <libintl.h>
#include <locale.h>
#include <limits.h>
#include <stdlib.h>
#include <stdio.h>
#include <support/support.h>
int
main (int argc, char **argv)
{
/* Do some non-trivial stuff that has been known to trigger
issues under valgrind in the past.
Setting up the locale textdomain makes sure to test some
string/path comparisons, file search and library loading. */
xsetlocale (LC_ALL, "");
if (bindtextdomain ("translit", "") == NULL)
return errno;
if (textdomain ("translit") == NULL)
return errno;
/* Show what we are executing and how... */
char *me = realpath (argv[0], NULL);
printf ("bin: %s\n", me);
printf ("ld.so: %s\n", argv[1]);
free (me);
return 0;
}
|