summaryrefslogtreecommitdiffstats
path: root/runtime/tests/string/printf_A.c
blob: e6c1a93f0d953442805aa11740ffa5c724abf51c (plain)
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
/* basic printf tests */

/* use very small buffer size for testing */
#define STP_PRINT_BUF_LEN 20
#include "runtime.h"

int main ()
{
  /* can we see output? */
  _stp_printf("ABCDE\n");
  _stp_print_flush();


  /* overflow */
  _stp_printf("1234567890123456789012345\n");
  _stp_printf("XYZZY\n");
  _stp_print_flush();

  /* small string then overflow string */
  _stp_printf("XYZZY\n");
  _stp_printf("1234567890123456789012345");
  _stp_printf("\n");
  _stp_print_flush();

  /* two small string that overflow */
  _stp_printf("abcdefghij");
  _stp_printf("1234567890");
  _stp_printf("\n");
  _stp_print_flush();

  /* two small string that overflow */
  _stp_printf("abcdefghij");
  _stp_printf("1234567890X");
  _stp_printf("\n");
  _stp_print_flush();

  _stp_printf("12345\n");
  _stp_printf("67890\n");
  _stp_printf("abcde\n");
  _stp_print_flush();
  _stp_print_flush();
  _stp_printf("12345");
  _stp_printf("67890");
  _stp_printf("abcde");
  _stp_printf("fghij");
  _stp_printf("\n");
  _stp_print_flush();

  /* null string */
  _stp_printf("");
  _stp_print_flush();  
  _stp_printf("");
  _stp_printf("Q\n");
  _stp_print_flush();  
  return 0;
}