Skip to content
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

8341882: [BACKOUT] java/nio/file/attribute/BasicFileAttributeView/CreationTime.java#tmp fails on alinux3 #21441

Closed
wants to merge 1 commit into from

Conversation

chhagedorn
Copy link
Member

@chhagedorn chhagedorn commented Oct 10, 2024

JDK-8338884 is causing build failures on linux-x64 in tier1 in our CI:

[2024-10-10T01:31:30,270Z] ERROR: Build failed for target 'default (product-bundles test-bundles static-libs-bundles)' in configuration 'linux-x64-debug' (exit code 2) 
[2024-10-10T01:31:30,298Z] 
[2024-10-10T01:31:30,298Z] === Output from failing command(s) repeated here ===
[2024-10-10T01:31:30,298Z] * For target support_test_jdk_jtreg_native_support_libCreationTimeHelper_libCreationTimeHelper.o:
[2024-10-10T01:31:30,298Z] In file included from /opt/mach5/mesos/work_dir/jib-master/install/jpg/infra/builddeps/devkit-linux_x64/gcc13.2.0-OL6.4+1.0/devkit-linux_x64-gcc13.2.0-OL6.4+1.0.tar.gz/x86_64-linux-gnu-to-x86_64-linux-gnu/x86_64-linux-gnu/sysroot/usr/include/asm/fcntl.h:1,
[2024-10-10T01:31:30,298Z]                  from /opt/mach5/mesos/work_dir/jib-master/install/jpg/infra/builddeps/devkit-linux_x64/gcc13.2.0-OL6.4+1.0/devkit-linux_x64-gcc13.2.0-OL6.4+1.0.tar.gz/x86_64-linux-gnu-to-x86_64-linux-gnu/x86_64-linux-gnu/sysroot/usr/include/linux/fcntl.h:4,
[2024-10-10T01:31:30,298Z]                  from /opt/mach5/mesos/work_dir/slaves/7a20d425-e769-4142-b5c1-e3cc2d88e03e-S42674/frameworks/1735e8a2-a1db-478c-8104-60c8b0af87dd-0196/executors/fd7e07c7-e1ac-4cf1-956e-1335b47d1afc/runs/eae3a102-cca9-477c-9539-3062f62476fa/workspace/open/test/jdk/java/nio/file/attribute/BasicFileAttributeView/libCreationTimeHelper.c:26:
[2024-10-10T01:31:30,298Z] /opt/mach5/mesos/work_dir/jib-master/install/jpg/infra/builddeps/devkit-linux_x64/gcc13.2.0-OL6.4+1.0/devkit-linux_x64-gcc13.2.0-OL6.4+1.0.tar.gz/x86_64-linux-gnu-to-x86_64-linux-gnu/x86_64-linux-gnu/sysroot/usr/include/asm-generic/fcntl.h:96:9: error: unknown type name 'pid_t'
[2024-10-10T01:31:30,298Z]    96 |         pid_t   pid;
[2024-10-10T01:31:30,298Z]       |         ^~~~~

Let's back this change out (pinging @sendaoYan). Revert was clean.

I created a REDO.

Thanks,
Christian


Progress

  • Change must be properly reviewed (1 review required, with at least 1 Reviewer)
  • Change must not contain extraneous whitespace
  • Commit message must refer to an issue

Issue

  • JDK-8341882: [BACKOUT] java/nio/file/attribute/BasicFileAttributeView/CreationTime.java#tmp fails on alinux3 (Sub-task - P1)

Reviewers

Reviewing

Using git

Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/21441/head:pull/21441
$ git checkout pull/21441

Update a local copy of the PR:
$ git checkout pull/21441
$ git pull https://git.openjdk.org/jdk.git pull/21441/head

Using Skara CLI tools

Checkout this PR locally:
$ git pr checkout 21441

View PR using the GUI difftool:
$ git pr show -t 21441

Using diff file

Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/21441.diff

Sorry, something went wrong.

…ionTime.java#tmp fails on alinux3"

This reverts commit 9d621d3.
@bridgekeeper
Copy link

bridgekeeper bot commented Oct 10, 2024

👋 Welcome back chagedorn! A progress list of the required criteria for merging this PR into master will be added to the body of your pull request. There are additional pull request commands available for use with this pull request.

@chhagedorn chhagedorn changed the title [BACKOUT] java/nio/file/attribute/BasicFileAttributeView/CreationTime.java#tmp fails on alinux3 8341882: [BACKOUT] java/nio/file/attribute/BasicFileAttributeView/CreationTime.java#tmp fails on alinux3 Oct 10, 2024
@openjdk
Copy link

openjdk bot commented Oct 10, 2024

@chhagedorn This change now passes all automated pre-integration checks.

ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details.

After integration, the commit message for the final commit will be:

8341882: [BACKOUT] java/nio/file/attribute/BasicFileAttributeView/CreationTime.java#tmp fails on alinux3

Reviewed-by: thartmann

You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed.

At the time when this comment was updated there had been no new commits pushed to the master branch. If another commit should be pushed before you perform the /integrate command, your PR will be automatically rebased. If you prefer to avoid any potential automatic rebasing, please check the documentation for the /integrate command for further details.

➡️ To integrate this PR with the above commit message to the master branch, type /integrate in a new comment.

Copy link
Member

@TobiHartmann TobiHartmann left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good.

@openjdk openjdk bot added ready Pull request is ready to be integrated rfr Pull request is ready for review labels Oct 10, 2024
@openjdk
Copy link

openjdk bot commented Oct 10, 2024

@chhagedorn The following labels will be automatically applied to this pull request:

  • build
  • nio

When this pull request is ready to be reviewed, an "RFR" email will be sent to the corresponding mailing lists. If you would like to change these labels, use the /label pull request command.

@openjdk openjdk bot added nio nio-dev@openjdk.org build build-dev@openjdk.org labels Oct 10, 2024
@chhagedorn
Copy link
Member Author

Thanks Tobias for the quick review!

/integrate

@openjdk
Copy link

openjdk bot commented Oct 10, 2024

Going to push as commit 36fca5d.

@openjdk openjdk bot added the integrated Pull request has been integrated label Oct 10, 2024
@openjdk openjdk bot closed this Oct 10, 2024
@openjdk openjdk bot removed ready Pull request is ready to be integrated rfr Pull request is ready for review labels Oct 10, 2024
@openjdk
Copy link

openjdk bot commented Oct 10, 2024

@chhagedorn Pushed as commit 36fca5d.

💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored.

@mlbridge
Copy link

mlbridge bot commented Oct 10, 2024

Webrevs

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
build build-dev@openjdk.org integrated Pull request has been integrated nio nio-dev@openjdk.org
Development

Successfully merging this pull request may close these issues.

None yet

2 participants