aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/execute_command_line_1.f90
blob: faaa860c9b417d5fd7114e497d39e136935d6c89 (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
57
58
59
60
! { dg-do compile }
!
! Check that we accept all variants of the EXECUTE_COMMAND_LINE intrinsic.
!
  integer :: i, j
  character(len=100) :: s

  s = ""

  call execute_command_line ("ls *.f90")

  print *, "-----------------------------"

  call execute_command_line ("sleep 1 ; ls *.f90", .false.)
  print *, "I'm not waiting"
  call sleep(2)

  print *, "-----------------------------"

  call execute_command_line ("sleep 1 ; ls *.f90", .true.)
  print *, "I did wait"
  call sleep(2)

  print *, "-----------------------------"

  call execute_command_line ("ls *.f90", .true., i)
  print *, "Exist status was: ", i

  print *, "-----------------------------"

  call execute_command_line ("ls *.doesnotexist", .true., i)
  print *, "Exist status was: ", i

  print *, "-----------------------------"

  call execute_command_line ("echo foo", .true., i, j)
  print *, "Exist status was: ", i
  print *, "Command status was: ", j

  print *, "-----------------------------"

  call execute_command_line ("echo foo", .true., i, j, s)
  print *, "Exist status was: ", i
  print *, "Command status was: ", j
  print *, "Error message is: ", trim(s)

  print *, "-----------------------------"

  call execute_command_line ("ls *.doesnotexist", .true., i, j, s)
  print *, "Exist status was: ", i
  print *, "Command status was: ", j
  print *, "Error message is: ", trim(s)

  print *, "-----------------------------"

  call execute_command_line ("sleep 20", .false.)
  print *, "Please kill me with ^C"
  call sleep (10)

  end