about summary refs log tree commit diff stats
path: root/test/os_dep/linux (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Replace jitter.run boolean by jitter.runningRomain Lesteven2021-05-051-1/+1
|
* Avoid generate default locationdbFabrice Desclaux2020-08-312-2/+6
|
* Clear get_str_* APIFabrice Desclaux2019-11-121-1/+1
| | | | | | | | | | | | | | | | get_str_ansi decoded strings using utf8 and was blindly used for pure windows function (LoadLibraryA) and for stdlib functions (printf, strlen, ...) even if strlen does not use utf8... New API is: get_win_str_a/get_win_str_w and set_win_str_a/set_win_str_w for windows (respectively codepage1252/windows utf16) .Those functions should only be used in windows strings manipulations, so there are taken out of the jitter. get_c_str/set_c_str: as those functions are "classic" in OSes, they are keeped in the jitter.
* Fix get_str_ansi: return strFabrice Desclaux2019-09-221-1/+1
| | | | | get_str_ansi and get_str_unic now returns both *str* object: As get_str_unic decodes the string, get_str_ansi should do the same.
* Rename miasm2 to miasmFabrice Desclaux2019-03-052-6/+6
|
* Support python2/python3Fabrice Desclaux2019-03-052-5/+6
|
* Fix typos & add codespellPierre LALET2018-12-231-1/+1
|
* Various Win32 API additions/fixes (#616)Adrien Guinet2017-10-311-0/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Various Win32 API additions/fixes * add a get_size method to Miasm heap object, which allows the implementation of mscvrt_realloc * add the concept of "current directory", with the default value being arbitrary set to "c:\tmp", which allows the implementation of {Get,Set}CurrentDirecrtory * various other methods implemented: - advapi32_RegCloseKey - advapi32_RegCreateKeyW - advapi32_RegSetValueExA - advapi32_RegSetValueExW - kernel32_GetProcessHeap - msvcrt_delete - msvcrt_fprintf - msvcrt_fwrite - msvcrt__mbscpy - msvcrt_new - msvcrt_realloc - msvcrt_sprintf - msvcrt_srand - msvcrt_strrchr - msvcrt_swprintf - msvcrt_wcscat - msvcrt_wcscmp - msvcrt_wcscpy - msvcrt__wcsicmp - msvcrt_wcslen - msvcrt_wcsncpy - msvcrt__wcsnicmp - msvcrt_wcsrchr
* Add regression test for command-line/env support in SandboxAjax2017-04-066-0/+46