Changeset 623a641 in rtems-tools
- Timestamp:
- 01/31/18 22:42:59 (5 years ago)
- Branches:
- 5, master
- Children:
- 005f995
- Parents:
- 0333442
- Location:
- tester
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
tester/rt/check.py
r0333442 r623a641 1 1 # 2 2 # RTEMS Tools Project (http://www.rtems.org/) 3 # Copyright 2016-201 7Chris Johns (chrisj@rtems.org)3 # Copyright 2016-2018 Chris Johns (chrisj@rtems.org) 4 4 # All rights reserved. 5 5 # … … 936 936 profile[bsps] = self.config.comma_list(profile['name'], bsps) 937 937 self.profiles[profile['name']] = profile 938 invalid_chars = re.compile(r'[^a-zA-Z0-9_-]') 938 939 for a in set(archs): 940 if len(invalid_chars.findall(a)) != 0: 941 raise error.general('invalid character(s) in arch name: %s' % (a)) 939 942 arch = {} 940 943 arch['excludes'] = {} … … 950 953 arch['bsps'] = self.config.comma_list(a, 'bsps', err = False) 951 954 for b in arch['bsps']: 955 if len(invalid_chars.findall(b)) != 0: 956 raise error.general('invalid character(s) in BSP name: %s' % (b)) 952 957 arch[b] = {} 953 958 arch[b]['bspopts'] = \ -
tester/rtems/rtems-bsps-powerpc.ini
r0333442 r623a641 43 43 psim, 44 44 qemuppc, qemuprep, qemuprep-altivec, 45 qoriq_core_0, qoriq_core_1, qoriq_e500, qoriq_e6500_32, qoriq_e6500_64 45 qoriq_core_0, qoriq_core_1, qoriq_e500, qoriq_e6500_32, qoriq_e6500_64, 46 46 ss555, 47 47 t32mppc,
Note: See TracChangeset
for help on using the changeset viewer.