Skip to content

Commit eb0bc4b

Browse files
committed
Hopefully fix final broken test
1 parent 7226dbb commit eb0bc4b

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# should be EB_GCC, but OK for testing purposes
2+
easyblock = 'EB_toy'
3+
4+
name = 'GCC'
5+
version = '10.2.0'
6+
7+
homepage = 'https://gcc.gnu.org/'
8+
description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada,
9+
as well as libraries for these languages (libstdc++, libgcj,...)."""
10+
11+
toolchain = SYSTEM
12+
13+
dependencies = [
14+
('GCCcore', version),
15+
# binutils built on top of GCCcore, which was built on top of (dummy-built) binutils
16+
('binutils', '2.35', '', ('GCCcore', version)),
17+
]
18+
19+
altroot = 'GCCcore'
20+
altversion = 'GCCcore'
21+
22+
# this bundle serves as a compiler-only toolchain, so it should be marked as compiler (important for HMNS)
23+
moduleclass = 'compiler'

test/framework/options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4856,7 +4856,7 @@ def test_github_new_update_pr(self):
48564856
self.assertTrue(regex.search(txt), "Pattern '%s' found in: %s" % (regex.pattern, txt))
48574857

48584858
# modifying an existing easyconfig requires a custom PR title
4859-
gcc_ec = os.path.join(test_ecs, 'g', 'GCC', 'GCC-4.9.2.eb')
4859+
gcc_ec = os.path.join(test_ecs, 'g', 'GCC', 'GCC-10.2.0.eb')
48604860
self.assertExists(gcc_ec)
48614861

48624862
args = [

0 commit comments

Comments
 (0)