Am 23.02.2019 17:45, schrieb Philippe Mouawad:
Hello,
I wonder if issue faced by new contributors is not due to PR 437 that
migrated properties from ASCII to UTF-8.
I think what happens is the following:
- There is this check:
-
https://github.com/apache/jmeter/blob/trunk/test/src/org/apache/jmeter/resources/PackageTest.java#L145
- If you build through Ant, and run tests it work fine
- But if you cleanup and rebuild project in Eclipse, the properties
with
UTF-8 are moved to class folders and since native2ascii does not
run, the
tests related to Lang fail
Yes, I think you have nailed it.
I just had the same error on my setup here. It uses eclipse for editing
and then I switched to console to run ant test. Sure enough I got the
error message.
The properties files in build and src where identical -- because eclipse
copied them. When I ran "ant clean install test ..." it succeeded and
the properties files in build and src where different -- as expected.
Thanks for your analysis. Now we can try to work on the necessary steps
to get it all working in eclipse.
Felix
Regards