Ignore:
Timestamp:
Jun 27, 2017, 10:53:32 AM (7 years ago)
Author:
ertl-honda
Message:

3.1.0を反映

File:
1 edited

Legend:

Unmodified
Added
Removed
  • asp3_wo_tecs/trunk/test/testexec.rb

    r305 r306  
    5252#  の責任を負わない.
    5353#
    54 #  $Id: testexec.rb 600 2016-02-07 11:46:22Z ertl-hiro $
     54#  $Id: testexec.rb 675 2016-03-06 01:30:21Z ertl-hiro $
    5555#
    5656
     
    6363TEST_SPEC = {
    6464  # 機能テストプログラム
    65   "cpuexc1"  => { :SRC=>"test_cpuexc1", :CFG=>"test_cpuexc" },
    66   "cpuexc2"  => { :SRC=>"test_cpuexc2", :CFG=>"test_cpuexc" },
    67   "cpuexc3"  => { :SRC=>"test_cpuexc3", :CFG=>"test_cpuexc" },
    68   "cpuexc4"  => { :SRC=>"test_cpuexc4", :CFG=>"test_cpuexc" },
    69   "cpuexc5"  => { :SRC=>"test_cpuexc5", :CFG=>"test_cpuexc" },
    70   "cpuexc6"  => { :SRC=>"test_cpuexc6", :CFG=>"test_cpuexc" },
    71   "cpuexc7"  => { :SRC=>"test_cpuexc7", :CFG=>"test_cpuexc" },
    72   "cpuexc8"  => { :SRC=>"test_cpuexc8", :CFG=>"test_cpuexc" },
    73   "cpuexc9"  => { :SRC=>"test_cpuexc9", :CFG=>"test_cpuexc" },
    74   "cpuexc10" => { :SRC=>"test_cpuexc10", :CFG=>"test_cpuexc" },
    75   "dlynse"   => { :SRC=>"test_dlynse" },
    76   "dtq1"     => { :SRC=>"test_dtq1" },
    77   "flg1"     => { :SRC=>"test_flg1" },
    78   "hrt1"     => { :SRC=>"test_hrt1" },
    79   "mutex1"   => { :SRC=>"test_mutex1", :BIT=>"mutex" },
    80   "mutex2"   => { :SRC=>"test_mutex2", :BIT=>"mutex" },
    81   "mutex3"   => { :SRC=>"test_mutex3", :BIT=>"mutex" },
    82   "mutex4"   => { :SRC=>"test_mutex4", :BIT=>"mutex" },
    83   "mutex5"   => { :SRC=>"test_mutex5", :BIT=>"mutex" },
    84   "mutex6"   => { :SRC=>"test_mutex6", :BIT=>"mutex" },
    85   "mutex7"   => { :SRC=>"test_mutex7", :BIT=>"mutex" },
    86   "mutex8"   => { :SRC=>"test_mutex8", :BIT=>"mutex" },
    87   "notify1"  => { :SRC=>"test_notify1" },
    88   "raster1"  => { :SRC=>"test_raster1", :BIT=>"kernel" },
    89   "raster2"  => { :SRC=>"test_raster2" },
    90   "sem1"     => { :SRC=>"test_sem1" },
    91   "sem2"     => { :SRC=>"test_sem2" },
    92   "sysman1"  => { :SRC=>"test_sysman1" },
    93   "sysstat1" => { :SRC=>"test_sysstat1" },
    94   "task1"    => { :SRC=>"test_task1", :BIT=>"kernel" },
    95   "tmevt1"   => { :SRC=>"test_hrt1" },
     65  "cpuexc1"  => { SRC: "test_cpuexc1", CFG: "test_cpuexc" },
     66  "cpuexc2"  => { SRC: "test_cpuexc2", CFG: "test_cpuexc" },
     67  "cpuexc3"  => { SRC: "test_cpuexc3", CFG: "test_cpuexc" },
     68  "cpuexc4"  => { SRC: "test_cpuexc4", CFG: "test_cpuexc" },
     69  "cpuexc5"  => { SRC: "test_cpuexc5", CFG: "test_cpuexc" },
     70  "cpuexc6"  => { SRC: "test_cpuexc6", CFG: "test_cpuexc" },
     71  "cpuexc7"  => { SRC: "test_cpuexc7", CFG: "test_cpuexc" },
     72  "cpuexc8"  => { SRC: "test_cpuexc8", CFG: "test_cpuexc" },
     73  "cpuexc9"  => { SRC: "test_cpuexc9", CFG: "test_cpuexc" },
     74  "cpuexc10" => { SRC: "test_cpuexc10", CFG: "test_cpuexc" },
     75  "dlynse"   => { SRC: "test_dlynse" },
     76  "dtq1"     => { SRC: "test_dtq1" },
     77  "flg1"     => { SRC: "test_flg1" },
     78  "hrt1"     => { SRC: "test_hrt1" },
     79  "mutex1"   => { SRC: "test_mutex1", BIT: "mutex" },
     80  "mutex2"   => { SRC: "test_mutex2", BIT: "mutex" },
     81  "mutex3"   => { SRC: "test_mutex3", BIT: "mutex" },
     82  "mutex4"   => { SRC: "test_mutex4", BIT: "mutex" },
     83  "mutex5"   => { SRC: "test_mutex5", BIT: "mutex" },
     84  "mutex6"   => { SRC: "test_mutex6", BIT: "mutex" },
     85  "mutex7"   => { SRC: "test_mutex7", BIT: "mutex" },
     86  "mutex8"   => { SRC: "test_mutex8", BIT: "mutex" },
     87  "notify1"  => { SRC: "test_notify1" },
     88  "raster1"  => { SRC: "test_raster1", BIT: "kernel" },
     89  "raster2"  => { SRC: "test_raster2" },
     90  "sem1"     => { SRC: "test_sem1" },
     91  "sem2"     => { SRC: "test_sem2" },
     92  "sysman1"  => { SRC: "test_sysman1" },
     93  "sysstat1" => { SRC: "test_sysstat1" },
     94  "task1"    => { SRC: "test_task1", BIT: "kernel" },
     95  "tmevt1"   => { SRC: "test_tmevt1" },
    9696
    9797  # メッセージバッファ機能拡張パッケージの機能テストプログラム
    98   "messagebuf1" => { :SRC=>"test_messagebuf1", :BIT=>"kernel" },
    99   "messagebuf2" => { :SRC=>"test_messagebuf2", :BIT=>"kernel" },
     98  "messagebuf1" => { SRC: "test_messagebuf1", BIT: "kernel" },
     99  "messagebuf2" => { SRC: "test_messagebuf2", BIT: "kernel" },
    100100
    101101  # オーバランハンドラ機能拡張パッケージの機能テストプログラム
    102   "ovrhdr1"  => { :SRC=>"test_ovrhdr1" },
     102  "ovrhdr1"  => { SRC: "test_ovrhdr1" },
    103103
    104104  # 制約タスク拡張パッケージの機能テストプログラム
    105   "rstr1"    => { :SRC=>"test_rstr1" },
    106   "rstr2"    => { :SRC=>"test_rstr2" },
     105  "rstr1"    => { SRC: "test_rstr1" },
     106  "rstr2"    => { SRC: "test_rstr2" },
    107107
    108108  # サブ優å
    109109ˆåº¦æ©Ÿèƒ½æ‹¡å¼µãƒ‘ッケージの機能テストプログラム
    110   "subprio1" => { :SRC=>"test_subprio1" },
    111   "subprio2" => { :SRC=>"test_subprio2" },
     110  "subprio1" => { SRC: "test_subprio1" },
     111  "subprio2" => { SRC: "test_subprio2" },
    112112
    113113  # システム時刻管理機能テストプログラム
    114   "systim1" => { :TARGET=>1, :SRC=>"hrt_systim1", :DEFS=>"-DHRT_CONFIG1" },
    115   "systim2" => { :TARGET=>1, :SRC=>"hrt_systim2", :DEFS=>"-DHRT_CONFIG1" },
    116   "systim3" => { :TARGET=>1, :SRC=>"hrt_systim3", :DEFS=>"-DHRT_CONFIG1" },
    117   "systim4" => { :TARGET=>1, :SRC=>"hrt_systim4", :DEFS=>"-DHRT_CONFIG2" },
     114  "systim1" => { TARGET: 1, SRC: "hrt_systim1", DEFS: "-DHRT_CONFIG1" },
     115  "systim2" => { TARGET: 1, SRC: "hrt_systim2", DEFS: "-DHRT_CONFIG1" },
     116  "systim3" => { TARGET: 1, SRC: "hrt_systim3", DEFS: "-DHRT_CONFIG1" },
     117  "systim4" => { TARGET: 1, SRC: "hrt_systim4", DEFS: "-DHRT_CONFIG2" },
    118118
    119119  # ドリフト調整機能拡張パッケージのシステム時刻管理機能テストプログラム
    120   "drift1"   => { :TARGET=>1, :SRC=>"hrt_drift1", :DEFS=>"-DHRT_CONFIG1" },
    121   "drift1-64ops"  => { :TARGET=>1, :SRC=>"hrt_drift1",
    122                                                                 :DEFS=>"-DHRT_CONFIG1 -DUSE_64BIT_OPS" },
    123   "systim1-64ops" => { :TARGET=>1, :SRC=>"hrt_systim1",
    124                                                                 :DEFS=>"-DHRT_CONFIG1 -DUSE_64BIT_OPS" },
     120  "drift1"   => { TARGET: 1, SRC: "hrt_drift1", DEFS: "-DHRT_CONFIG1" },
     121  "drift1-64ops"  => { TARGET: 1, SRC: "hrt_drift1",
     122                                                                DEFS: "-DHRT_CONFIG1 -DUSE_64BIT_OPS" },
     123  "systim1-64ops" => { TARGET: 1, SRC: "hrt_systim1",
     124                                                                DEFS: "-DHRT_CONFIG1 -DUSE_64BIT_OPS" },
    125125
    126126  # 性能評価プログラム
    127   "perf0" => { :CDL=>"perf_pf" },
    128   "perf1" => { :CDL=>"perf_pf" },
    129   "perf2" => { :CDL=>"perf_pf" },
    130   "perf3" => { :CDL=>"perf_pf" },
    131   "perf4" => { :CDL=>"perf_pf" },
    132   "perf5" => { :CDL=>"perf_pf" },
     127  "perf0" => { CDL: "perf_pf" },
     128  "perf1" => { CDL: "perf_pf" },
     129  "perf2" => { CDL: "perf_pf" },
     130  "perf3" => { CDL: "perf_pf" },
     131  "perf4" => { CDL: "perf_pf" },
     132  "perf5" => { CDL: "perf_pf" },
    133133}
    134134
Note: See TracChangeset for help on using the changeset viewer.