-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cgen: fix several issues with autofree(fix #20635) #20659
Draft
shove70
wants to merge
1
commit into
vlang:master
Choose a base branch
from
shove70:autofree
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
// vtest vflags: -autofree | ||
|
||
fn return_array_with_result() ![]int { | ||
mut arr := []int{} | ||
arr << 123 | ||
return arr | ||
} | ||
|
||
fn return_array_with_option() ?[]int { | ||
mut arr := []int{} | ||
arr << 123 | ||
return arr | ||
} | ||
|
||
fn return_strng(s string) string { | ||
return s | ||
} | ||
|
||
fn test_main() { | ||
arr1 := return_array_with_result()! | ||
assert arr1 == [123] | ||
arr2 := return_array_with_option()? | ||
assert arr2 == [123] | ||
|
||
// test ident | ||
str1 := '${'123'}abc' | ||
str2 := str1 | ||
assert str2 == '123abc' | ||
|
||
// test CallExpr | ||
str3 := return_strng(str1) | ||
assert str3 == '123abc' | ||
|
||
// test MatchExpr | ||
str4 := match true { | ||
true { | ||
str1 | ||
} | ||
else { | ||
str1 | ||
} | ||
} | ||
assert str4 == '123abc' | ||
|
||
// test IfExpr | ||
str5 := if true { str1 } else { str1 } | ||
assert str5 == '123abc' | ||
|
||
// test ParExpr | ||
// vfmt off | ||
str6 := (str1) | ||
// vfmt on | ||
assert str6 == '123abc' | ||
|
||
// test UnsafeExpr | ||
str7 := unsafe { str1 } | ||
assert str7 == '123abc' | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This
// vtest vflags: -autofree
is currently recognized only for .vv programs undervlib/v/gen/c/testdata/
. The logic for it, is implemented invlib/v/gen/c/coutput_test.v
.Autofree programs however, are usually tested by
vlib/v/slow_tests/valgrind/valgrind_test.v
, and are located undervlib/v/slow_tests/valgrind
.I think you should move that program there too, just rename
fn test_main() {
tofn main() {
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for telling me. ❤️
this is a complicated issue, I still need to fix it, finally I will move it to
vlib/v/slow_tests/valgrind
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for working on it 🙇🏻♂️ .