-
Notifications
You must be signed in to change notification settings - Fork 66
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
Apply project settings to o.e.osgi.tests #325
Apply project settings to o.e.osgi.tests #325
Conversation
Torbjorn-Svensson
commented
Oct 1, 2023
- Convert to LF and ensure LF at EOF:
- Removed executable flag on files:
- Format java files:
2c84aca
to
443dd43
Compare
443dd43
to
471c16f
Compare
471c16f
to
40b2fe5
Compare
40b2fe5
to
2a154f0
Compare
Rebased PR on 1d9eb47. |
Conflicts, please have a look |
This was achieved by running: find . -type f -print0 | \ xargs -r0 perl -le 'for (@argv) { print if -f && -T }' | \ xargs -rd'\n' dos2unix -e Signed-off-by: Torbjörn SVENSSON <torbjorn.svensson@st.com>
This was achieved by running: find . -type f -executable -print0 | \ xargs -r0 chmod 644 Signed-off-by: Torbjörn SVENSSON <torbjorn.svensson@st.com>
2a154f0
to
f8d0a1c
Compare
Rebased on b297e05. |
This was achieved by running: eclipse -consolelog -nosplash -application org.eclipse.jdt.core.JavaCodeFormatter \ -config .settings/org.eclipse.jdt.core.prefs . -data `mktemp -d` Signed-off-by: Torbjörn SVENSSON <torbjorn.svensson@st.com>
f8d0a1c
to
13dabee
Compare
Test failure should be fixed now. |
What did you do to fix the tests? |
I simply added a trim of the returned content when comparing to the expected number as the content has already been verified a few lines above and the only thing that is to be tested is that it's the correct number in the file. The change was done here: https://github.com/eclipse-equinox/equinox/compare/f8d0a1c3be3a5db5b2bb9bd8a97eaec49f268119..13dabee294f6c8bb4212391f4a941db6789e04b1 |
Thanks @Torbjorn-Svensson |