Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a2c13dc

Browse files
committedNov 14, 2024
Add modules-bug-bash.yml.
1 parent 44a276f commit a2c13dc

File tree

1 file changed

+109
-0
lines changed

1 file changed

+109
-0
lines changed
 
+109
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
3+
4+
name: Modules Bug Bash
5+
description: For the Standard Library Modules Bug Bash
6+
title: "Modules: `<HEADER_NAME_HERE>`: SUMMARIZE_PROBLEM_HERE"
7+
labels: modules
8+
body:
9+
- type: checkboxes
10+
attributes:
11+
label: Getting Started
12+
description: >
13+
Please read the rules for the
14+
[Standard Library Modules Bug Bash](https://github.com/StephanTLavavej/STL/wiki/Standard-Library-Modules-Bug-Bash)
15+
and look at the
16+
[open issues for modules](https://github.com/microsoft/STL/issues?q=is%3Aopen+is%3Aissue+label%3Amodules)
17+
to avoid submitting duplicates.
18+
options:
19+
- label: I've read the rules.
20+
required: true
21+
- label: I'm using the latest VS Preview.
22+
required: true
23+
- label: I've looked at the open issues today.
24+
required: true
25+
- label: I've filled out the bug title above.
26+
required: true
27+
- type: dropdown
28+
attributes:
29+
label: Bug Category
30+
description: >
31+
What kind of bug is this? These categories are explained in the rules.
32+
options:
33+
- ""
34+
- silent-bad-codegen
35+
- warning-on-valid
36+
- rejects-valid
37+
- ICE-on-valid
38+
- accepts-invalid
39+
- wrong-diagnostic
40+
- ICE-on-invalid
41+
- something-else (please explain below)
42+
default: 0
43+
validations:
44+
required: true
45+
- type: textarea
46+
attributes:
47+
label: Test Case
48+
description: >
49+
My test case that works with classic includes but fails with named modules:
50+
placeholder: |
51+
#include <assert.h>
52+
53+
#ifdef USE_CLASSIC_INCLUDES
54+
#include <cerrno>
55+
#include <cmath>
56+
#include <cstdio>
57+
#else
58+
import std;
59+
#endif
60+
61+
int main() {
62+
#ifdef USE_CLASSIC_INCLUDES
63+
std::puts("Classic includes.");
64+
#else
65+
std::puts("Named modules.");
66+
#endif
67+
68+
const double dbl{std::sqrt(2.25)};
69+
const int err{errno};
70+
std::printf("dbl: %g\n", dbl);
71+
std::printf("err: %d\n", err);
72+
}
73+
render: cpp
74+
validations:
75+
required: true
76+
- type: textarea
77+
attributes:
78+
label: Results for Classic Includes
79+
description: >
80+
Please provide the entire command line, entire compiler output, and entire runtime output (if applicable).
81+
placeholder: |
82+
C:\GitHub\STL>cl /EHsc /nologo /W4 /std:c++latest /MTd /Od woof.cpp /DUSE_CLASSIC_INCLUDES && woof.exe
83+
woof.cpp
84+
Classic includes.
85+
dbl: 1.5
86+
err: 0
87+
render: text
88+
validations:
89+
required: true
90+
- type: textarea
91+
attributes:
92+
label: Results for Named Modules
93+
description: >
94+
Please provide the entire command line, entire compiler output, and entire runtime output (if applicable).
95+
placeholder: |
96+
C:\GitHub\STL>cl /EHsc /nologo /W4 /std:c++latest /MTd /Od woof.cpp std.obj && woof.exe
97+
woof.cpp
98+
woof.cpp(19): error C2065: 'errno': undeclared identifier
99+
render: text
100+
validations:
101+
required: true
102+
- type: textarea
103+
attributes:
104+
label: Additional Context
105+
description: |
106+
Anything else? Feel free to leave this empty.
107+
108+
If you're building the microsoft/STL repo to use our latest sources, that's awesome.
109+
Please mention what branch you're building (usually `main`) and your current commit (run `git rev-parse HEAD`).

0 commit comments

Comments
 (0)
Please sign in to comment.