Restrict gnat.dg/system_info1.adb to Linux and Windows hosts
authorOlivier Hainque <hainque@adacore.com>
Fri, 20 Sep 2019 12:17:20 +0000 (12:17 +0000)
committerOlivier Hainque <hainque@gcc.gnu.org>
Fri, 20 Sep 2019 12:17:20 +0000 (12:17 +0000)
Where it is know to work, still covering the original test intent.

From-SVN: r275999

gcc/testsuite/ChangeLog
gcc/testsuite/gnat.dg/system_info1.adb

index 8e1b4be2c012d89189963f6184731e6a6bcb0703..8868ad1e9068e7a1c023231d506f3732da45ee08 100644 (file)
@@ -1,3 +1,7 @@
+2019-09-20  Olivier Hainque  <hainque@adacore.com>
+
+       * gnat.dg/system_info1.adb: Restrict to *-*-linux* and *-*-mingw*.
+
 2019-09-20  Eric Botcazou  <ebotcazou@adacore.com>
 
        * gcc.dg/pr91269.c: New test.
index 493a18e9077cd61625b8d6eccc359b61644a4dd5..e299bc4481e786b217574e5d9aa22af1a42f59dd 100644 (file)
@@ -1,4 +1,9 @@
---  { dg-do run }
+--  A basic test initially intended to check that
+--  System.Task_Info.Number_Of_Processors yields sensible results on
+--  both 32bit and 64bit Windows. Additional configurations where the
+--  feature was verified to work can opt-in.
+
+--  { dg-do run { target *-*-mingw* *-*-linux* } }
 
 with System.Multiprocessors;
 with System.Task_Info;
@@ -20,4 +25,4 @@ begin
    if Nprocs /= Integer (Ncpus) then
       raise Program_Error;
    end if;
-end;
\ No newline at end of file
+end;