node/deps/v8/test/message/readbuffer-non-existing-file.js
Michaël Zasso 53379f3706
deps: update V8 to 14.3.127.12
PR-URL: https://github.com/nodejs/node/pull/60488
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Richard Lau <richard.lau@ibm.com>
2025-11-13 15:08:26 +01:00

15 lines
354 B
JavaScript

// Copyright 2025 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
try {
readbuffer('nonexisting_file.js');
} catch (e) {
print(e);
}
try {
readbuffer('really-long-nonexisting-filename-which-should-get-truncated.js');
} catch (e) {
print(e);
}