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
GCC 9.0: ztest "directive argument is not a nul-terminated string" #8330
Comments
tonyhutter
added a commit
to tonyhutter/zfs
that referenced
this issue
Jan 23, 2019
GCC 9.0 is complaining because we're trying to print strings that
are defined like this:
.zo_pool = { 'z', 't', 'e', 's', 't', '\0' },
Fix them by making it an actual strings.
Signed-off-by: Tony Hutter <hutter2@llnl.gov>
Fixes: openzfs#8330
12 tasks
tonyhutter
added a commit
to tonyhutter/zfs
that referenced
this issue
Jan 23, 2019
GCC 9.0 is complaining because we're trying to print strings that
are defined like this:
.zo_pool = { 'z', 't', 'e', 's', 't', '\0' },
Fix them by making it an actual strings.
Signed-off-by: Tony Hutter <hutter2@llnl.gov>
Fixes: openzfs#8330
tonyhutter
added a commit
to tonyhutter/zfs
that referenced
this issue
Jan 25, 2019
GCC 9.0 is complaining because we're trying to print strings that
are defined like this:
.zo_pool = { 'z', 't', 'e', 's', 't', '\0' },
Fix them by making them actual strings.
Signed-off-by: Tony Hutter <hutter2@llnl.gov>
Fixes: openzfs#8330
tonyhutter
added a commit
to tonyhutter/zfs
that referenced
this issue
Jan 30, 2019
GCC 9.0 is complaining because we're trying to print strings that
are defined like this:
.zo_pool = { 'z', 't', 'e', 's', 't', '\0' },
Fix them by making them actual strings.
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Tony Hutter <hutter2@llnl.gov>
Closes openzfs#8330
tonyhutter
added a commit
to tonyhutter/zfs
that referenced
this issue
Feb 4, 2019
GCC 9.0 is complaining because we're trying to print strings that
are defined like this:
.zo_pool = { 'z', 't', 'e', 's', 't', '\0' },
Fix them by making them actual strings.
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Tony Hutter <hutter2@llnl.gov>
Closes openzfs#8330
Requires-spl: openzfs#713
tonyhutter
added a commit
to tonyhutter/zfs
that referenced
this issue
Feb 5, 2019
GCC 9.0 is complaining because we're trying to print strings that
are defined like this:
.zo_pool = { 'z', 't', 'e', 's', 't', '\0' },
Fix them by making them actual strings.
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Tony Hutter <hutter2@llnl.gov>
Closes openzfs#8330
Requires-spl: refs/pull/713/head
tonyhutter
added a commit
to tonyhutter/zfs
that referenced
this issue
Feb 8, 2019
GCC 9.0 is complaining because we're trying to print strings that
are defined like this:
.zo_pool = { 'z', 't', 'e', 's', 't', '\0' },
Fix them by making them actual strings.
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Tony Hutter <hutter2@llnl.gov>
Closes openzfs#8330
Requires-spl: refs/pull/713/head
tonyhutter
added a commit
to tonyhutter/zfs
that referenced
this issue
Feb 12, 2019
GCC 9.0 is complaining because we're trying to print strings that
are defined like this:
.zo_pool = { 'z', 't', 'e', 's', 't', '\0' },
Fix them by making them actual strings.
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Tony Hutter <hutter2@llnl.gov>
Closes openzfs#8330
Requires-spl: refs/pull/713/head
tonyhutter
added a commit
to tonyhutter/zfs
that referenced
this issue
Feb 19, 2019
GCC 9.0 is complaining because we're trying to print strings that
are defined like this:
.zo_pool = { 'z', 't', 'e', 's', 't', '\0' },
Fix them by making them actual strings.
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Tony Hutter <hutter2@llnl.gov>
Closes openzfs#8330
tonyhutter
added a commit
that referenced
this issue
Mar 4, 2019
GCC 9.0 is complaining because we're trying to print strings that
are defined like this:
.zo_pool = { 'z', 't', 'e', 's', 't', '\0' },
Fix them by making them actual strings.
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Tony Hutter <hutter2@llnl.gov>
Closes #8330
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
System information
Describe the problem you're observing
GCC is complaining because we're trying to print a string that's defined like this:
.zo_pool = { 'z', 't', 'e', 's', 't', '\0' },This seems to fix it:
Describe how to reproduce the problem
Using master in rawhide:
Include any warning/errors/backtraces from the system logs
The text was updated successfully, but these errors were encountered: